错误提示:
Cannot redeclare xxxxxx() (previously declared in C:\WWW\geoip.inc:xxx) in <b>C:\WWW\geoip.inc</b> on line <b>xxx</b><br />
错误原因:
这个问题是因为多次引用导致重复声明
解决方法:
1.看到报错的那个文件,这里是C:\WWW\geoip.inc
2.搜索引用 geoip.inc 的文件,找到:require ("geoip.inc"); 这样子的语句,将其改为 require_once ("geoip.inc");
3.重新访问测试,只要还报错就说明还有地方没改好
————————————————
来自-CSDN博主「安果移不动」
原文链接:https://blog.csdn.net/mp624183768/article/details/84647022