Uncaught Error: Call to undefined function get_magic_quotes_gpc() 错误处理方法

未分类阅读模式

运行环境升级到php 8.2,提示Uncaught Error: Call to undefined function get_magic_quotes_gpc() in /xxx/xxx.php
错误原因get_magic_quotes_gpc()函数在php 7.4版本中就已经废除了,但是隐形警告,前台无感,到8.2版本强制前台输出,并中断当前php脚本的执行。
解决办法,用

if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {……}

替换之前get_magic_quotes_gpc()