php怎麼移除字元?
如果沒有中文的話可以用 str_replace
str_replace(find,replace,string,count)
str_replace()
函數以其他字元取代字串中的一些字元(區分大小寫)
參數
find 必要。規定要找的值。
replace 必需。規定替換 find 中的值的值。
string 必需。規定被搜尋的字串。
count 可選。對替換數進行計數的變數。
範例:把字串"Hello world!" 中的字元"world" 替換為"Shanghai"
echo str_replace("world","Shanghai","Hello world!");
輸出結果:
Hello Shanghai!
推薦:《 PHP教程》
以上是php怎麼去除字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!