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

错误提示:Deprecated: Function get_magic_quotes_gpc() is deprecated in D:\phpstudy_pro\WWW\xxx\e\class\connect.php on line 6

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

错误解决办法,将第六行的代码:
  1. define('MAGIC_QUOTES_GPC',function_exists('get_magic_quotes_gpc')&&get_magic_quotes_gpc());
复制代码
修改为:
  1. define('MAGIC_QUOTES_GPC',ini_set("magic_quotes_runtime",0)?True:False);
复制代码






上一篇:宝塔面板CentOS 8.x安装免费防火墙后nginx无法启动修改方法
下一篇:帝国cms导航判断有无子栏目显示下拉样式和父栏目首页高亮
如无回复请发邮件