php裡面怎麼替換文字

2020-07-16 10:06:17

php替換文字的方法:使用【str_replace()】函數用一些字串替換字串中的另一些字元即可,語法為【str_replace(find,replace,string,count)】。

php替換文字的方法:

在php教學替換字元效率最高也是最簡單字元替換函數str_replace($arr1,$arr2,$str)

範例一

str_replace("iwind", "kiki", "i love iwind, iwind said");

將輸出

 "i love kiki, kiki said"

結果

即將原字串中的所有"iwind"都替換成了"kiki".str_replace是大小寫敏感的,所以對你不能設想用 str_replace("iwind", "kiki",...)替換原字串中的"iwind". str_replace還可以實現多對一

用法str_replace()函數使用一個字串替換字串中的另一些字元。

語法str_replace(find,replace,string,count)引數 描述

  • find 必需。規定要查詢的值。

  • replace 必需。規定替換 find 中的值的值。

  • string 必需。規定被搜尋的字串。

  • count 可選。一個變數,對替換數進行計數。

function strreplace($str){
      $str = strips教學lashes($str);
      $str = str_replace(chr(92),'',$str);
      $str = str_replace(chr(47),'',$str);
      $str = str_replace(chr(10).chr(13),"",$str);
      $str = str_replace('<',"&lt;",$str);      $str = str_replace('>',"&gt;",$str);
      $str = str_replace(';',";",$str);
      $str = str_replace('"',"「",$str);
      $str = str_replace("'","‘",$str);
      $str = str_replace(" "," ",$str);
      $str = str_replace("/**/"," ",$str);
      return trim($str);
    }

以上就是php裡面怎麼替換文字的詳細內容,更多請關注TW511.COM其它相關文章!