php中字元替換函數是什麼

2020-07-16 10:06:17

php中字元替換函數是str_replace()。str_replace()函數用於替換字串中的一些字元,該函數是區分大小寫的。函數語法:【str_replace(find,replace,string,count)】。

php中字元替換函數是str_replace()。

(推薦教學:php教學

函數介紹:

str_replace() 函數替換字串中的一些字元(區分大小寫)。

注意:該函數是區分大小寫的。

函數語法:

str_replace(find,replace,string,count)

引數介紹:

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

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

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

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

程式碼實現:

<?php
  //範例一:字串替換字串
  $str1 = str_replace("red","black","red green yellow pink purple");
  echo $str1."";  //輸出結果為black green yellow pink purple
?>
<?php
  //範例二:字串替換陣列鍵值
  $arr = array("blue","red","green","yellow");
  $str1 = str_replace("red","pink",$arr,$i);
  print_r($str1);
?>

以上就是php中字元替換函數是什麼的詳細內容,更多請關注TW511.COM其它相關文章!