如果字串中沒有中文可以使用str_replace()函數來取代字串。
語法格式:
str_replace(find,replace,string,count)
參數介紹:
#實例:
把字串"Hello world!"中的字元"world" 替換為"Shanghai"
echo str_replace("world","Shanghai","Hello world!");
更多相關教學請造訪php中文網。
以上是php中的字串替換函數是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!