您好,登錄后才能下訂單哦!
這篇文章主要介紹php如何將指定字符串替換為空,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
方法: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如何將指定字符串替換為空”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。