Heim >Backend-Entwicklung >PHP-Tutorial >PHP字符串替换函数 可同时替换多个关键词

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

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

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

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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn