欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP的substr_replace将指定两位置之间的字符替换为*号

程序员文章站 2024-02-05 23:51:46
...

PHP的substr_replace将指定两位置之间的字符替换为*号的代码,需要的朋友可以参考下。

代码如下:
$username = "zongzi";
echo substr_replace($username,'**','1','2');

定义和用法

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

语法

substr_replace(string,replacement,start,length)

提示和注释

如果 start 是负数且 length 小于等于 start,则 length 为 0。
例子
代码如下:
echo substr_replace("Hello world","earth",6);
?>

输出:
Hello earth

相关标签: 字符替换