为什么即使在字符串上使用stripslashes和strip_tags后仍然会出现额外的斜杠?

时间:2015-03-14 10:50:58

标签: php string backslash strip-tags stripslashes

我在名为$message的变量中有一个字符串。

echo stripslashes(strip_tags($message));之后我得到了以下输出。

Michael Clarke commented on Darren Lehmann's status update "ߘðߘİߘ0ߘʢغ️"

现在执行语句echo json_encode($message);后,我得到了以下输出:

Michael Clarke commented on Darren Lehmann's status update \"ߘðߘİߘ0ߘʢغ️\"

我担心的是我不希望额外的反斜杠以及最终输出中出现的垃圾数据。如何删除它们?

请指导我在我的代码中出错的地方?

提前致谢。

0 个答案:

没有答案