PHP报错信息集合

252次阅读
没有评论

Deprecated: Function get_magic_quotes_gpc() is deprecated in /www/wwwroot/www.example.com/core/core.php on line 20

PHP版本过高

  • https://www.php.net/manual/en/function.get-magic-quotes-gpc.php
  • https://www.php.net/manual/en/function.get-magic-quotes-runtime.php

该函数已经在PHP7.4被移除了,解决方案有两个:
一:使用PHP7.4以下的版本
二:修改代码

define('MAGIC_QUOTES_GPC',function_exists('get_magic_quotes_gpc')&&get_magic_quotes_gpc());
// 改为
define('MAGIC_QUOTES_GPC',ini_set("magic_quotes_runtime",0) ? TRUE : FALSE);
正文完
 
wujingquan
版权声明:本站原创文章,由 wujingquan 2024-03-28发表,共计455字。
转载说明:Unless otherwise specified, all articles are published by cc-4.0 protocol. Please indicate the source of reprint.
评论(没有评论)