について質問があります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に保存したくありませんDB
。とにかくこれを防ぐために何かありますか?助けてくれてありがとう!