複製程式碼 程式碼如下:
$username = "zongzi";
echo substr_replace($username,'**'** '1','2');
定義和用法
substr_replace() 函數把字串的一部分替換為另一個字串。
語法
substr_replace(string,replacement,start,length)
參數 |
說明 |
string |
必填。規定要檢查的字串。 |
replacement |
必備。規定要插入的字串。 |
start |
参数 |
描述 |
string |
必需。规定要检查的字符串。 |
replacement |
必需。规定要插入的字符串。 |
start |
必需。规定在字符串的何处开始替换。
- 正数 - 在第 start 个偏移量开始替换
- 负数 - 在从字符串结尾的第 start 个偏移量开始替换
- 0 - 在字符串中的第一个字符处开始替换
|
charlist |
可选。规定要替换多少个字符。
- 正数 - 被替换的字符串长度
- 负数 - 从字符串末端开始的被替换字符数
- 0 - 插入而非替换
|
必填。規定在字串的何處開始替換。
|
charlist |
可選。規定要替換多少個字元。
- 正數 - 被取代的字串長度
- 負數 - 從字串末端開始的被替換字元數
- 0 - 插入而非替換
|
提示與註解註:
如果start
是負數且
length
小於等於start,則length 為0。
範例
複製程式碼
程式碼如下:
echo substr_
echo substr_echo substr_ "earth",6); ?> 輸出: Hello earth
以上就介紹了irreplacable PHP的substr_replace將指定兩位置之間的字元替換為號,包括了irreplacable方面的內容,希望對PHP教程有興趣的朋友有所幫助。