CKEditor使用HTML标记中的额外斜杠保存文本

ego*_*ndt 2 php ckeditor

当我从表单中的textarea检索数据时,

<?php $editor_data = $_POST['editor1']; ?>
Run Code Online (Sandbox Code Playgroud)

这在当地很好用.

但是,远程服务器返回混合带有转义斜杠的样式的文本,如下所示:

<h3 style=\"color: blue;\"> Initial value.</h3>
Run Code Online (Sandbox Code Playgroud)

我不知道我做错了什么.你有什么主意吗?

Ces*_*sar 5

请参阅:http: //www.php.net/manual/en/info.configuration.php#ini.magic-quotes-gpc

如果你不能修改php.ini,你可以使用stripslashes函数(http://www.php.net/stripslashes)