PHP substr_replace() 函数解析
程序员文章站
2022-06-12 16:29:12
...
定义和用法:
substr_replace() 把字符串的一部分替换为另一个字符串。
如果 start 参数是负数且 length 小于或者等于 start,则 length 为 0
语法:
substr_replace(string,replacement,start,length)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
replacement | 必需。规定要插入的字符串。 |
start | 必需。规定在字符串的何处开始替换。
|
length | 可选。规定要替换多少个字符。默认是与字符串长度相同。
|
例子:
<?php
echo substr_replace("Hello world","earth",6);
?>
运行结果:Hello earth
下一篇: php关于获取图片信息的函数解析