php报错:Use of undefined constant xxx – assumed ‘xxxx’
这很可能是因为书写不规范造成的,很多在windows主机上正常运行的程序到了linux主机上报这个错误,这时候你就是注意错误行的书写规范问题,例如:
Notice: Use of undefined constant id – assumed ‘id’ ,如:$row[id], 正确写法为$row[‘id’];
另外的解决办法就是屏蔽错误
关闭 PHP 提示的方法
修改php.ini:
error_reporting = E_ALL
改为:
error_reporting = E_ALL & ~E_NOTICE
还有个不是办法的办法就是
在每个文件头上加
error_reporting(0); 虽然不好弄但是可以解决问题
转载请注明:七维网络 » php报错:Use of undefined constant xxx – assumed ‘xxxx’ 解决办法