其他分享
首页 > 其他分享> > Cannot redeclare xxxxxx() (previously declared in C:\WWW\xxx.xxx:xxx)

Cannot redeclare xxxxxx() (previously declared in C:\WWW\xxx.xxx:xxx)

作者:互联网

错误提示:

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

标签:WWW,geoip,xxx,declared,报错,inc
来源: https://www.cnblogs.com/lusanqian/p/15184454.html