定义和用法

substr_replace() 函数把字符串的一部分替换为另一个字符串。

注释:如果 start 参数是负数且 length 小于或者等于 start,则 length 为 0。

注释:该函数是二进制安全的。

语法

substr_replace(string,replacement,start,length)
参数描述
string必需。规定要检查的字符串。
replacement必需。规定要插入的字符串。
start必需。规定在字符串的何处开始替换。正数 - 在字符串中的指定位置开始替换负数 - 在从字符串结尾的指定位置开始替换0 - 在字符串中的第一个字符处开始替换
length可选。规定要替换多少个字符。默认是与字符串长度相同。正数 - 被替换的字符串长度负数 - 表示待替换的子字符串结尾处距离 string 末端的字符个数。0 - 插入而非替换

技术细节

返回值:返回被替换的字符串。如果 string 是数组,则返回数组。
PHP 版本:4+
更新日志:自 PHP 4.3.3 起,所有参数都接受数组。

demo

$str1 = 'hello this is Jerry';
$str2 = '你好,这里是杰瑞';
show(substr_replace($str1, 'tom', 6));
show(substr_replace($str2, 'tom', 6));


hello tom
你好tom