php中的substr_replace函數的用法:【substr_replace(string,replacement,start,length)】。 substr_replace()函數用來把字串的一部分替換為另一個字串。
php substr_replace函數用來取代字串中某一字串為另一個字串,其語法為substr_replace(string,replacement,start,length)。
(推薦教學:php影片教學)
php substr_replace函數怎麼用?
作用:替換字串中某字串為另一個字串。
語法:
substr_replace(string,replacement,start,length)
參數:
string 必要。規定要檢查的字串。
replacement 必需。規定要插入的字串。
start 必需。規定在字串的何處開始替換。正數 - 在字串中的指定位置開始替換,負數 - 在從字串結尾的指定位置開始替換,0 - 在字串中的第一個字元開始替換。
length 可選。規定要替換多少個字元。預設是與字串長度相同。正數 - 被替換的字串長度,負數 - 表示待替換的子字串結尾處距離 string 末端的字元個數。 0 - 插入而非替換
說明:
把字串的一部分替換為另一個字串。如果 start 參數是負數且 length 小於或等於 start,則 length 為 0。該函數是二進制安全的。
php substr_replace()函數使用範例1
<?php echo substr_replace("Hello world","php.cn",6); ?>
輸出:
Hello php.cn
php substr_replace()函數使用範例2
<?php $i = "i like JavaScript"; echo substr_replace($i,"php",7); ?>
輸出:
i like php
以上是php中的substr_replace函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!