Maison  >  Article  >  développement back-end  >  str_replaced函数的有关问题

str_replaced函数的有关问题

WBOY
WBOYoriginal
2016-06-13 12:24:31711parcourir

str_replaced函数的问题?

<br />$bodytext = str_replace("%body%", "black", "<body text='%body%'>");<br />var_dump($bodytext);<br />echo str_replace("world","John","Hello world!");<br />

输出

为什么var_dump($bodytext)会输出string(19) "";是那里错了?设置还是语法?
------解决思路----------------------
$bodytext = str_replace("%body%", "black", "<body text='%body%'>");<br />var_dump($bodytext);
string(19) "

"

你只看到 string(19) ""  的原因是:你用浏览器查看时, 被当做 html 标记解释了,所以看不见
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn