php去掉指定字串的方法:先建立PHP範例檔;然後透過「substr_replace($a,"",$count,2);」方法去掉指定字串;最後透過echo輸出結果即可。
推薦:《PHP影片教學》
PHP在字串中尋找指定字串並刪除的程式碼
$a = "abcababa"; $count=strpos($a,"ab"); $str=substr_replace($a,"",$count,2);
輸出結果:cababa
以上是php如何去掉指定字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!