Heim > Artikel > Backend-Entwicklung > Eine kurze Einführung in PHP Anti-Injection
Dieser Artikel teilt Ihnen hauptsächlich die Anti-Annotation von PHP mit. Der Artikel stellt hauptsächlich den Code für die Anti-Annotation von PHP vor.
$_POST = sql_injection($_POST); $_GET = sql_injection($_GET); function sql_injection($content) { if (!get_magic_quotes_gpc()) { if (is_array($content)) { foreach ($content as $key=>$value) { $content[$key] = addslashes($value); } } else { addslashes($content); } } return $content; }
Verwandte Empfehlungen:
Einfacher PHP-Anti-Injection-Code
Einfacher PHP-Anti-Injection-Code
Das obige ist der detaillierte Inhalt vonEine kurze Einführung in PHP Anti-Injection. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!