Home > Backend Development > PHP Tutorial > php字符串替换有关问题,发现如何都不能实现,请高人指点

php字符串替换有关问题,发现如何都不能实现,请高人指点

WBOY
Release: 2016-06-13 12:24:15
Original
770 people have browsed it

php字符串替换问题,发现怎么都不能实现,请高人指点

有这样一个需求:有一个字符串'abc',想把其中的'a'替换成'ab',其中的'b'替换成'cd',即最后得到'abcdc'。

发现怎么都不能实现,比如用'str_replace'

<br /><?php<br />$str = 'abc';<br />var_dump(str_replace(['a', 'b'], ['ab', 'cd'], $str));<br />
Copy after login

返回的结果是'acdcdc'。'str_replace'处理的过程好像是先把‘a’替换成'ab'得到'abbc',然后把'abbc'中的‘b’替换成'cd'得到'acdcdc',即整个过程是:'abc' -> 'abbc' -> 'acdcdc'。'preg_replace'也是同样的处理过程。

请问,如何实现'abc' -> 'abcdc'???

坐等高手,十分感谢
------解决思路----------------------
不要在一颗树上吊死,php 已提供了各种处理方式
$str = 'abc';<br />echo strtr($str, array('a' => 'ab', 'b' => 'cd'));
Copy after login
abcdc

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template