Home >Backend Development >PHP Tutorial >php有没有在字符串中插入一个字符串的函数呢?

php有没有在字符串中插入一个字符串的函数呢?

WBOY
WBOYOriginal
2016-06-06 20:11:521300browse

比如在hello的中间加一个a,foo('hello', 'a', 3)这样的

回复内容:

比如在hello的中间加一个a,foo('hello', 'a', 3)这样的

<code class="php"><?php $str = 'hello';
echo substr_replace($str, 'a', 3, 0); // helalo
?></code>

这个貌似没遇到过~不如自己写一个函数通用就好了!

没有 自己写一个

用正则试试。。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn