我正在使用第三方CMS系统,并且正在创建一个具有指定打印布局的页面,但是当我返回数据时,我会收到不需要的反斜杠。 IE浏览器。 \"Scrutiny Process\"
而不是"Scrutiny Process"
。我知道条带斜线功能,但我将如何在下面使用它?
if ($title = mysql_fetch_array($result))
{
do {printf("%s", $title["page_content"]);}
while ($title = mysql_fetch_array($result));
提前致谢。
答案 0 :(得分:1)
使用
stripcslashes($title["page_content"]);