当前位置:Gxlcms > PHP教程 > PHP字符串替换函数可同时替换多个关键词

PHP字符串替换函数可同时替换多个关键词

时间:2021-07-01 10:21:17 帮助过:27人阅读

  1. /**
  2. * 字符串替换函数
  3. * edit: bbs.it-home.org
  4. */
  5. function replace($string,$keyArray,$replacement,$i){
  6. $result='';
  7. if($i<(count($keyArray))){
  8. $strSegArray=explode($keyArray[$i],$string);
  9. foreach ($strSegArray as $index=>$strSeg){
  10. $x=$i+1;
  11. if($index==(count($strSegArray)-1))
  12. $result=$result.replace($strSeg,$keyArray,$replacement,$x);
  13. else
  14. $result=$result.replace($strSeg,$keyArray,$replacement,$x).$replacement[$i];
  15. }
  16. return $result;
  17. }
  18. else{
  19. return $string;
  20. }
  21. }

代码说明: $string=' 键名 数组可以同时含有 integer 和 string 类型的键名,12345678 因为 PHP 实际并不区分索引数组和关联数组。 如果对给出的值没有指定键名,则取当前最大的整数索引值,而新的键名将是该值加一。如果指定的键名已经有了值,则该值会被覆盖。'; 示例:

  1. $keyArray=array('数组','integer','2345','键名');
  2. $replacement=array('AAAA','BBBB','CCCC','DDDD');
  3. echo replace($string,$keyArray,$replacement,0);

人气教程排行