php刪除字串中某一元素的方法:1、用str_replace(),語法「str_replace("需要刪除的值","",$str)」;2、用str_ireplace(),語法“str_ireplace("要刪除的值","",$str)”。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
php中刪除字符字串中的某一元素
方法1:使用str_replace()函數
str_replace() 函數以其他字元取代字串中的一些字元(區分大小寫);當替換值為空字串""
時,即可實現刪除指定值。
語法:
str_replace(find,replace,string,count)
參數 | 描述 |
---|---|
find | 必要。規定要找的值。 |
replace | 必要。規定替換 find 中的值的值。 |
string | 必要。規定被搜尋的字串。 |
count | #可選。對替換數進行計數的變數。 |
範例:
<?php header("Content-type:text/html;charset=utf-8"); $str = 'hello,world,Hello,world'; echo "原字符串:".$str."<br>"; $search = 'hello'; $replace = ''; echo "需要删除的元素:".$search."<br>"; echo "删除指定值的字符串:".str_replace($search, $replace, $str); ?>
#方法2:使用str_ireplace()函數
str_ireplace() 函數替換字串中的一些字元(不區分大小寫);同樣,當替換值為空字串""
時,即可實現刪除指定值。
str_ireplace() 函數和str_replace() 函數的語法相似,可參考上面。
範例:
<?php header("Content-type:text/html;charset=utf-8"); $str = 'hello,world,Hello,world'; echo "原字符串:".$str."<br>"; $search = 'hello'; $replace = ''; echo "需要删除的元素:".$search."<br>"; echo "删除指定值的字符串:".str_ireplace($search, $replace, $str); ?>
推薦學習:《PHP影片教學》
以上是php中怎麼刪除字串中的某一元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!