替換函數:1、str_ireplace();2、str_replace();3、substr_replace();4、array_replace();5、array_replace_recursive();6、array_splice()。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
php字串查找替換函數
str_ireplace():取代字串中的一些字元(對大小寫不敏感)。
str_replace():取代字串中的一些字元(對大小寫敏感)。
substr_replace():把字串的一部分替換為另一個字串。
str_ireplace() 和str_replace() 函數
str_ireplace() 和str_replace 使用新的字串取代原來字串中指定的特定字串,str_replace 區分大小寫,str_ireplace() 不區分大小寫,兩者語法相似。
str_ireplace() 的語法如下:
mixed str_ireplace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
此函數傳回字串或陣列。該字串或陣列是將 subject 中全部的 search 以 replace 取代(忽略大小寫)之後的結果。參數 count 表示執行替換的次數。
使用範例如下:
<?php $str = 'hello,world,hello,world'; $replace = 'hi'; $search = 'hello'; echo str_ireplace($search, $replace, $str); ?>
執行上述程式碼的輸出結果為:
hi,world,hi,world
substr_replace() 函數
substr_replace( ) 函數的語法如下:
mixed substr_replace ( mixed $string , mixed $replacement , mixed $start [, mixed $length ] )
substr_replace() 在字串string 的副本中將由start 和可選的length 參數限定的子字串使用replacement 進行替換。
如果 start 為正數,替換將從 string 的 start 位置開始。如果 start 為負數,替換將從 string 的倒數第 start 個位置開始。
如果設定了 length 參數且為正數,就表示 string 中被替換的子字串的長度。如果設定為負數,就表示待替換的子字串結尾處距離 string 末端的字元個數。如果沒有提供此參數,那麼預設為 strlen(string)(字串的長度)。當然,如果 length 為 0,那麼這個函數的函數為將 replacement 插入 string 的 start 位置處。
此函數的使用範例如下:
<?php $str = 'hello,world,hello,world'; $replace = 'hi'; echo substr_replace($str, $replace, 0,5); ?>
以上程式碼的執行結果為:
hi,world,hello,world
php陣列尋找取代函數
array_replace():使用後面陣列的值來取代第一個陣列的值。
array_replace_recursive():遞歸地使用後面陣列的值來取代第一個陣列的值。
array_splice():刪除並替換陣列中指定的元素。
array_splice() 函數
#array_splice() 函數用來刪除陣列的部分元素;你可以直接刪除,也可以用其它值來替代。
array_splice() 語法如下:
array array_splice ( array &$arr, int $start [, int $length = 0 [, mixed $replacement ]] )
參數說明:
如果 start 和 length 組合的結果是不會刪除任何元素,那麼 replacement 所包含的值將會被插入 start 指定的位置。
注意,使用 replacement 取代陣列元素不會保留原來的鍵名。
傳回值:傳回由刪除的元素組成的陣列。
函數的使用範例如下:
<?php $arr = array("red", "green", "blue", "yellow"); array_splice($arr, 2); print_r($arr); //$arr 现在变成 array("red", "green") $arr = array("red", "green", "blue", "yellow"); array_splice($arr, 1, -1); print_r($arr); //$arr 现在变成 array("red", "yellow") $arr = array("red", "green", "blue", "yellow"); array_splice($arr, 1, count($arr), "orange"); print_r($arr); //$arr 现在变成 array("red", "orange") $arr = array("red", "green", "blue", "yellow"); array_splice($arr, -1, 1, array("black", "maroon")); print_r($arr); //$input 现在变成 array("red", "green", "blue", "black", "maroon") $arr = array("red", "green", "blue", "yellow"); array_splice($arr, 3, 0, "purple"); print_r($arr); //$arr 现在变成 array("red", "green", "blue", "purple", "yellow"); ?>
執行上述程式的輸出結果如下:
Array ( [0] => red [1] => green ) Array ( [0] => red [1] => yellow ) Array ( [0] => red [1] => orange ) Array ( [0] => red [1] => green [2] => blue [3] => black [4] => maroon ) Array ( [0] => red [1] => green [2] => blue [3] => purple [4] => yellow )
推薦學習:《PHP影片教學》
以上是php中尋找替換函數有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!