我有關於filter
如何過濾html字符?
我有以下問題:
$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
中空白。無論如何要阻止這一點?謝謝您的幫助!
哪裏$我在你的代碼來自哪裏? –
這是一個循環var循環通過我的htmlData – FlyingCat