PHP substr_replace() 函數語法
substr_replace(string,replacement,start,length)
參數 |
描述 |
string
必需。規定要檢查的字符串。
replacement
必需。規定要插入的字符串。
start
必需。規定在字符串的何處開始替換。
- 正數 - 在第 start 個偏移量開始替換
- 負數 - 在從字符串結尾的第 start 個偏移量開始替換
- 0 - 在字符串中的第一個字符處開始替換
charlist
可選。規定要替換多少個字符。
- 正數 - 被替換的字符串長度
- 負數 - 從字符串末端開始的被替換字符數
- 0 - 插入而非替換