在PHP中,可以使用str_replace()函數來替換指定位置的字串,語法格式“substr_replace(string,replacement,start,length)”,參數start用於指定替換位置(在字串的何處開始替換)。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
php取代指定位置字串
<?php $str = 'hello world'; // 替换指定位置的字符 $str = substr_replace($str,"earth",6);; // 显示字符 echo $str; ?>
輸出:
hello earth
相關函數說明:
substr_replace() 函數把字串的一部分替換為另一個字串。語法如下:
substr_replace(string,replacement,start,length)
參數 | 描述 |
---|---|
##string ##必需。規定要檢查的字串。 | |
必要。規定要插入的字串。 | |
#必要。規定在字串的何處開始替換。 | 正數- 在字串的指定位置開始
|
可選。規定要替換多少個字元。預設是與字串長度相同。 | 正數- 被替換的字串長度
|
推薦學習:《
以上是php怎麼替換指定位置的字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!