php中如何指定位置替換

2020-07-16 10:06:30

php中如何指定位置替換?

使用substr_replace() 函數

定義和用法
substr_replace() 函數把字串的一部分替換為另一個字串。

語法
substr_replace(string,replacement,start,length)

<?php教學
echo substr_replace("hello world","earth",6);
?>

string 必需。規定要檢查的字串

replacement 必需。規定要插入的字串。

start 必需。規定在字串的何處開始替換

可選。規定要替換多少個字元。

以上就是php中如何指定位置替換的詳細內容,更多請關注TW511.COM其它相關文章!