Heim  >  Artikel  >  Backend-Entwicklung  >  fatal error 写php分页时出现的Fatal error的解决方法

fatal error 写php分页时出现的Fatal error的解决方法

WBOY
WBOYOriginal
2016-07-29 08:44:511480Durchsuche

Fatal error: Cannot redeclare htmtocode() (previously declared in D:\www_local\mytest\conn.php:7) in D:\www_local\mytest\conn.php on line 10
这个错误提示出现在写分页文件page.php时
google翻译这句话的意思是“致命错误:不能重新声明htmtocode()”
第10行的代码为


//连接数据库
include("conn.php");
//引入分页类文件
include("page.class.php");
?>
在网上搜了一下,可能的原因是:两个页面程序文件引用而导致在内存中被重复加载时引发冲突
解决方法:用include_once()代替include

以上就介绍了fatal error 写php分页时出现的Fatal error的解决方法,包括了fatal error方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn