代码在撇号之前添加反斜杠

时间:2012-12-28 14:26:47

标签: php apostrophe

例如,我写了这篇文章是我不知道并将其提交给数据库。 然后我转到页面,此文本出现并显示我不知道,如何禁用添加反斜杠?

$text= htmlspecialchars($db['text']);
$textA = array('/\[b\](.*?)\[\/b\]/is');
$textB = array('<b>$1</b>'); 
$textC = preg_replace($textA,$textB,$text);
echo nl2br($textC);

2 个答案:

答案 0 :(得分:2)

在保存到数据库之前关闭magic_quotes_gpc并确保您没有使用addslashes

答案 1 :(得分:1)

通过添加以下行,在.htaccess文件中关闭 magic_quotes

php_flag magic_quotes_gpc Off