Home  >  Article  >  Backend Development  >  想描红所有123 但是返回的结果却是008,而不是预想的0560708,是哪里出的有关问题呢

想描红所有123 但是返回的结果却是008,而不是预想的0560708,是哪里出的有关问题呢

WBOY
WBOYOriginal
2016-06-13 11:10:46878browse

想描红所有123 但是返回的结果却是008,而不是预想的0560708,是哪里出的问题呢?

<?php<br />$subject=1235612371238;<br />$word=123;<br />$pattern="#.*($word).*#sUi";<br />echo preg_replace($pattern, "0", $subject);<br />?>



想描红所有123 但是返回的结果却是008,而不是预想的0560708,是哪里出的问题呢?


------解决方案--------------------
<?PHP<br />$subject=1235612371238;<br />$word=123;<br />$pattern="/.*($word).*/sUi";<br />//echo preg_replace($pattern, "0", $subject);<br />var_dump(Strtr($subject,Array('123'=>'0')));
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