1

$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以摆脱它们。我尝试了一些东西,但总是得到空白数据。

谢谢!

4

1 回答 1

1

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

$newstring=str_replace("\\","",$row_messageRepliesResults['msgReplyText']);
于 2013-07-11T14:45:08.400 回答