php中的str_ireplace函數的用法:【str_ireplace(find,replace,string,count)】。 str_ireplace函數用於替換字串中的一些字元(不區分大小寫)。
php str_ireplace函數用於字串替換運算,不區分大小寫,其語法為str_ireplace(find,replace,string,count)。參數find必需,規定要找出的值;replace必需,規定取代 find 中的值的值;string必需,規定被搜尋的字串。
(推薦教學:php影片教學)
php str_ireplace函數怎麼用?
php str_ireplace()函數 語法
作用:字串替換運算,不區分大小寫。
語法:
str_ireplace(find,replace,string,count)
參數:
find 必要。規定要找的值。
replace 必需。規定替換 find 中的值的值。
string 必需。規定被搜尋的字串。
count 可選。一個變量,對替換數進行計數。
說明:
取代字串中的一些字元(不區分大小寫)。此函數必須遵循下列規則:如果搜尋的字串是數組,那麼它將傳回數組。如果搜尋的字串是一個數組,那麼它將對數組中的每個元素進行查找和替換。
如果同時需要對陣列進行查找和替換,並且需要執行替換的元素少於查找到的元素的數量,那麼多餘元素將用空字串進行替換。如果是對一個陣列進行查找,但只對一個字串進行替換,那麼替代字串將對所有查找到的值起作用。
php str_ireplace()函數使用範例1
<?php echo str_ireplace("WORLD","php.cn","Hello world!"); ?>
輸出:
Hello php.cn!
php str_ireplace()函數使用範例2
<?php echo str_ireplace("hello","Hi","hello php.cn!"); ?>
輸出:
Hi php.cn!
以上是php中的str_ireplace函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!