我在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
不会显示任何错误消息。
答案 0 :(得分:1)
str_replace()
返回修改后的字符串,它不会进行就地更改。
$new_bash = str_replace($cherche, $remplace, $bash);