strstr()在PHP中不起作用

时间:2014-06-27 16:13:25

标签: php strstr

我在PHP中使用的代码使用函数strstr()

$conversation = strstr($bash, '_');
$pseudo = strrchr($bash, '_');
//On ajoute les balises html au pseudo et a la conversation
$cherche = array($pseudo, $conversation);
$remplace = array("'<span class=\"pseudo\">' , $pseudo , '</span>'",
                  "'<span class=\"pseudo\">' , $conversation , '</span><br />'");
str_replace($cherche, $remplace , $bash);
echo $bash;

但是,echo function display $bash不会显示任何错误消息。

1 个答案:

答案 0 :(得分:1)

str_replace()返回修改后的字符串,它不会进行就地更改。

$new_bash = str_replace($cherche, $remplace, $bash);