首頁 >後端開發 >PHP問題 >php中怎麼刪除字串中的某一元素

php中怎麼刪除字串中的某一元素

青灯夜游
青灯夜游原創
2022-03-07 11:46:453818瀏覽

php刪除字串中某一元素的方法:1、用str_replace(),語法「str_replace("需要刪除的值","",$str)」;2、用str_ireplace(),語法“str_ireplace("要刪除的值","",$str)”。

php中怎麼刪除字串中的某一元素

本教學操作環境: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 = &#39;hello,world,Hello,world&#39;;
echo "原字符串:".$str."<br>";

$search = &#39;hello&#39;;
$replace = &#39;&#39;;

echo "需要删除的元素:".$search."<br>";
echo "删除指定值的字符串:".str_replace($search, $replace, $str);
?>

php中怎麼刪除字串中的某一元素

#方法2:使用str_ireplace()函數

str_ireplace() 函數替換字串中的一些字元(不區分大小寫);同樣,當替換值為空字串""時,即可實現刪除指定值。

str_ireplace() 函數和str_replace() 函數的語法相似,可參考上面。

範例:

<?php
header("Content-type:text/html;charset=utf-8");
$str = &#39;hello,world,Hello,world&#39;;
echo "原字符串:".$str."<br>";

$search = &#39;hello&#39;;
$replace = &#39;&#39;;

echo "需要删除的元素:".$search."<br>";
echo "删除指定值的字符串:".str_ireplace($search, $replace, $str);
?>

php中怎麼刪除字串中的某一元素

推薦學習:《PHP影片教學

以上是php中怎麼刪除字串中的某一元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn