我有一个关于filter
我有以下内容:
$htmlData
包含用户输入html
字符串,就像
$htmlData = array('<em>test</em>', 'text here','\n')
//I use htmlspecialchars function and want to filter \n out and save it to DB.
$texts = htmlspecialchars($htmlData[$i]);
if(!empty($texts) && $text != '\n'){
echo $text; //I still see '\n' here for some reason.
}
我不想保存'\n'
到数据库,因为它在DB
. 有没有办法防止这种情况发生?谢谢您的帮助!