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

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

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

同时替换一个字符串里的几个关键词。
确实搞复杂了,应该strtr就可以搞定了,当时只关注str_replace了,以为别无他法了,可以无视这段代码了。
  1. function replace($string,$keyArray,$replacement,$i){
  2. $result='';
  3. if($i<(count($keyArray))){
  4. $strSegArray=explode($keyArray[$i],$string);
  5. foreach ($strSegArray as $index=>$strSeg){
  6. $x=$i+1;
  7. if($index==(count($strSegArray)-1))
  8. $result=$result.replace($strSeg,$keyArray,$replacement,$x);
  9. else
  10. $result=$result.replace($strSeg,$keyArray,$replacement,$x).$replacement[$i];
  11. }
  12. return $result;
  13. }
  14. else{
  15. return $string;
  16. }
  17. }
  18. $string=' 键名 数组可以同时含有 integer 和 string 类型的键名,12345678 因为 PHP 实际并不区分索引数组和关联数组。
  19. 如果对给出的值没有指定键名,则取当前最大的整数索引值,而新的键名将是该值加一。如果指定的键名已经有了值,则该值会被覆盖。';
  20. $keyArray=array('数组','integer','2345','键名');
  21. $replacement=array('AAAA','BBBB','CCCC','DDDD');
  22. echo replace($string,$keyArray,$replacement,0);

人气教程排行