php中如何指定位置替換?
使用substr_replace() 函數
定義和用法
substr_replace() 函數把字串的一部分替換為另一個字串。
語法substr_replace(string,replacement,start,length)
<?php教程 echo substr_replace("hello world","earth",6); ?>
string 必要。規定要檢查的字串
replacement 必需。規定要插入的字串。
start 必需。規定在字串的何處開始替換
可選。規定要替換多少個字元。
推薦教學: 《php教學》
#######以上是php中如何指定位置替換的詳細內容。更多資訊請關注PHP中文網其他相關文章!