您的位置:首页 > 帝国cms教程

帝国cms7.x安装报错Deprecated: Function get_magic_quotes_gpc()

2021-01-08 04:14:56 帝国cms教程 54
错误提示:Deprecated: Function get_magic_quotes_g电脑端() is deprecated in D:phpstudy_proxxxeclassconnect.php on line 6

帝国cms安装报错Deprecated: Function get_magic_quotes_g电脑端()
错误的位置在connect.php文件的第六行,这个错误的原因是PHP 7.x不推荐使用get_magic_quotes_g电脑端函数替代(PHP 7.4 deprecated get_magic_quotes_g电脑端 function alternative)。

错误解决办法,将第六行的代码:
define('MAGIC_QUOTES_GPC',function_exists('get_magic_quotes_g电脑端')&&get_magic_quotes_g电脑端());
修改为:
define('MAGIC_QUOTES_GPC',ini_set("magic_quotes_runtime",0)?True:False);


相关推荐