wp_magic_quotes() WP 1.0
Add magic quotes to $_GET, $_POST, $_COOKIE, and $_SERVER.
Also forces $_REQUEST to be $_GET + $_POST. If $_SERVER, $_COOKIE, or $_ENV are needed, use those superglobals directly.
1 time = 0.000084s = very fast | 50000 times = 1.83s = fast | PHP 7.0.8, WP 4.6.1
No Hooks.
Return
Null. Nothing.
Usage
wp_magic_quotes();
Changelog
Since 3.0.0 | Introduced. |
Code of wp_magic_quotes() wp magic quotes WP 5.6
function wp_magic_quotes() {
// Escape with wpdb.
$_GET = add_magic_quotes( $_GET );
$_POST = add_magic_quotes( $_POST );
$_COOKIE = add_magic_quotes( $_COOKIE );
$_SERVER = add_magic_quotes( $_SERVER );
// Force REQUEST to be GET + POST.
$_REQUEST = array_merge( $_GET, $_POST );
}Related Functions
From category: Uncategorized
- cache_javascript_headers()
- do_robots()
- download_url()
- get_privacy_policy_url()
- is_blog_installed()
- is_wp_error()
- maybe_convert_table_to_utf8mb4()
- nocache_headers()