每次我用撇号保存一些东西时,CKEditor都会在我的页面上放置\

时间:2012-03-16 09:34:38

标签: php ckeditor

我在网站上使用ckeditor,顶部有一个单独的框,显示章节名称。

<input type="text" id="chapter" name="chapter" value="'.$chapter_title.'"/>

每次当我有一个叛逆者时我都会保存CKeditor页面,它会在章节名称中加上\。

eg.  John's   becomes   John\'s  
Then each time I save it adds more \ 
so second time John's becomes John\\'s then third time John\\\'s etc.

有人知道如何制止这个吗?

4 个答案:

答案 0 :(得分:1)

也许你的magic_quotes_gpc已开启?

答案 1 :(得分:1)

答案 2 :(得分:0)

了解函数addslashes()stripslashes()

答案 3 :(得分:0)

在回显内容之前使用php function stripslashes()。