一、报错内容
Deprecated: Function get_magic_quotes_gpc() is deprecated in /www/wwwroot/xxxxx.com/core/includes/master.inc.php on line 47
二、报错分析
报错的 get_magic_quotes_gpc() 函数在 PHP 5.3.0 起废弃并将自 PHP 5.4.0 起移除。
在高版本下的 PHP 取而代之的是 $_SERVER['REQUEST_METHOD'] 变量,用于检查当前请求的 HTTP 方法。
在 PHP 7 及更高版本中,不建议使用 get_magic_quotes_gpc(),因为它已被视为不安全的功能,并已被移除。
相反,应该使用 $_SERVER['REQUEST_METHOD'] 来获取当前请求的 HTTP 方法。
三、解决方法
1、定位文件:/core/includes/master.inc.php on line 47
2、找到关键: if (get_magic_quotes_gpc()) {
3、替换代码:
if (function_exists('get_magic_quotes_gpc') && PHP_VERSION_ID < 70400 && call_user_func('get_magic_quotes_gpc')) {