str_replace() 函數用於將一個字串替換為另一個字串。
注意 - 此函數區分大小寫。
str_replace(find, replace, str, count)
#find - 要搜尋的值
replace - 我們要取代$find 的字串
#str - 要搜尋的字串
#count - 替換次數
str_replace( ) 函數傳回帶有替換值的字串或陣列。
以下是範例-
即時示範
<?php $str = "I am Amit"; $res = str_replace("Amit", "David", $str); echo $res; ?>
I am David
以下是範例-
現場示範
<?php $myArr = array("one","two","three"); print_r(str_replace("three","four",$myArr,$c)); echo "<br>" . "Number of Replacements = $c"; ?>
Array ( [0] => one [1] => two [2] => four ) <br> Number of Replacements = 1
以上是在PHP中的str_replace()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!