方法:1、使用str_ireplace(),語法「str_ireplace(指定子字串, '', 原始字串)」;2、使用substr_replace(),語法「substr_replace(原字串,'' ,開始替換的位置,替換長度)」。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
在PHP中,可以透過str_ireplace() 和str_replace()函數使用新的字串取代原來字串中指定的特定字串,str_replace 區分大小寫,str_ireplace() 不區分大小寫。
1、使用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 = ''; $search = 'hello'; echo str_ireplace($search, $replace, $str); ?>
輸出:
,world,,world
2、使用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!'; $replace = ''; echo substr_replace($str, $replace, 0,5); ?>
輸出:
world!
推薦學習:《PHP影片教學》
以上是php怎麼將指定字串替換為空的詳細內容。更多資訊請關注PHP中文網其他相關文章!