Updated: 26 November 2024
See https://www.php.net/manual/en/ini.core.php#ini.disable-functions
PHP INI file setting
disable_functions='get_magic_quotes_gpc'
PHP check script
error_reporting(E_ALL);
get_magic_quotes_gpc();
var_dump(function_exists('get_magic_quotes_gpc'));
Output with PHP 7.4. Note the deprecation warning is still displayed
Deprecated: Function get_magic_quotes_gpc() is deprecated in ...
Warning: get_magic_quotes_gpc() has been disabled for security reasons in ...
bool(false)