使用get_magic_quotes_gpc防止數據庫攻擊仍然相關嗎?如果啓用了魔術引號,我想剝去額外的斜線。防止數據庫攻擊
if(get_magic_quotes_gpc()){
If magic quotes is enabled, strip the extra slashes
array_walk_recursive($_GET,create_function('&$v,$k','$v = stripslashes($v);'));
array_walk_recursive($_POST,create_function('&$v,$k','$v = stripslashes($v);'));
}
我看着php手冊,看到它已被棄用。我不確定我可以使用哪些替代方案,或者如果可能有一些調整,我不知道。因爲我對編程和學習不同的編碼技術仍然陌生。任何提示將不勝感激
你真的應該使用參數化查詢到PDO:http://stackoverflow.com/questions/ 60174 /最好的方式,以防止SQL注入在PHP –
SO應該只是自動化關於使用PDO的帖子,當涉及到PHP的mysql_問題。 – ficuscr
謝謝你的鏈接@JordanKaye – Octavius