0
$this->car_features = stripslashes(html_entity_decode($rows['features']));
這是正確的嗎?誰可以確認?提前謝謝了!同時使用stripslashes和html_entity_decode
$this->car_features = stripslashes(html_entity_decode($rows['features']));
這是正確的嗎?誰可以確認?提前謝謝了!同時使用stripslashes和html_entity_decode
如果你想要做的是解碼HTML實體,然後去掉斜槓,那麼是的,它會這樣做。
爲什麼斜槓在那裏呢?
從你的問題,我可以推斷出你正在尋找消毒數據,以逃避所有特殊字符和存儲在分貝?假設作爲一種情況,如果您使用PHP 5.2或更高版本,請查找PHP Filters and Sanitizers。