php Notice : Use of undefined constant解决办法
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-30 15:20:34 浏览: 评论:0
错误提示:php Notice : Use of undefined constant
分析:这些是 PHP 的提示而非报错,PHP 本身不需要事先声明变量即可直接使用,但是对未声明变量会有提示。一般作为正式的网站会把提示关掉的,甚至连错误信息也被关掉
解决办法:关闭 PHP 提示的方法,搜索php.ini:
error_reporting = E_ALL 改为:error_reporting = E_ALL & ~E_NOTICE
还有个不是办法的办法是在每个文件头上加如下代码:
error_reporting(0); 这句代码是php的容错语句,就是可以将错误屏蔽掉,在页面不显示错误信息,但错误依然存在,虽然这样并不好但是可以解决问题
Tags: Notice undefined constant
相关文章
- ·Notice:undefined index ..错误提示解决方法(2013-12-02)
- ·PHP Notice: undefined index原因与解决办法(2013-12-03)
- ·php提示 Notice: Use of undefined constant name - assumed(2013-12-04)
- ·PHP关闭Notice错误提示(2014-01-03)
- ·PHP error_reporting(E_ALL ^ E_NOTICE)一些资料整理(2014-09-13)
- ·php Notice:Undefined index错误解决办法(2014-09-21)
- ·php提示Notice: Use of undefined constant错误(2014-09-21)
- ·PHP “Notice: Undefined variable” 和 “Notice: Undefined index”报错(2018-09-18)
- ·Call to undefined function php() (2013-11-28)
- ·Fatal error: Call to undefined function curl_init(2013-11-28)
- ·php Undefined variable和 Undefined index(2013-11-28)
- ·php Undefined index和Undefined variable的解决方法(2013-11-29)
- ·php提示Notice: Undefined index 错误解决办法(2014-03-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)