字串是php中比較常用的類型,對字串的替換也沒有陣列來的更加方便,那麼如何對字串內的字元進行替換的,本文就帶大家一起來看看如何以利用str_repalce()
函數來完成,首先我們來看看函數的語法:
str_replace ( mixed $search , mixed $replace , mixed $subject , int $count = ? )
$search:尋找的目標值,可以指定多個目標。
$replace:search 的替換值。
$subject:執行替換的陣列或字串
#$count:可選,如果被指定,它的值將被設定為替換發生的次數。
傳回值:函數傳回替換後的陣列或字串。
程式碼實例:
1.有必要的三個參數
<?php $str="ok is great,that is php.cn"; $str1=str_replace("is","hehe",$str); print_r($str1); ?>
输出:ok hehe great,that hehe php.cn
2.有四個參數
<?php $str="ok is great,that is php.cn"; $str1=str_replace("is","hehe",$str,$count); print_r($str1); echo "<br>"."总共替换了:".$count; ?>
输出:ok hehe great,that hehe php.cn 总共替换了:2
推薦:《2021年PHP面試題大匯總(收藏)》《php影片教學#》
以上是詳解php中的str_replace()(附程式碼實例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!