Fatal error: Uncaught Error: Call to undefined function mysqli_connect() in XXX
参考链接:https://blog.csdn.net/sxudong2010/article/details/83277285/
Function get_magic_quotes_gpc() is deprecated
解决:改为 define('MAGIC_QUOTES_GPC',ini_set("magic_quotes_runtime",0)?True:False);
Warning: Use of undefined constant can - assumed 'can' ....
解决:指定文件将变量加上单引号即: $r[can] 改为 $r['can']