preg_replace在echo变量之前替换\

时间:2013-07-11 14:39:43

标签: variables preg-replace

我在数据库中有以下变量$row_messageRepliesResults['msgReplyText']及以下数据,用于此变量

Your website <a href=\"http://www.example.com/link.php\" target=\"\" rel=\"\">http://www.example.com/links.php</a> was without any content \"not guaranteeing CTR\".

我遇到的问题是,当我用这个内容回显变量时,那些\也出现了,所以我想知道如何使用preg_replace来摆脱它们。我尝试了一些但总是得到空白数据。

谢谢!

1 个答案:

答案 0 :(得分:1)

如果所有字符串都与此字符串相似(除了引号之外没有转义字符),则不需要使用preg_replace();一个简单的str_replace()会做。

$newstring=str_replace("\\","",$row_messageRepliesResults['msgReplyText']);