Notice: Use of undefined constant

来源:互联网 发布:三菱plc编程图形图 编辑:程序博客网 时间:2024/05/01 21:58
Notice: Use of undefined constant getRandNicheng - assumed 'getRandNicheng' in C:\Apache24\htdocs\web1\renwu\function.php on line 189

Notice: Use of undefined constant get_rand - assumed 'get_rand' in C:\Apache24\htdocs\web1\renwu\function.php on line 327

刚开始接触PHP,一打开页面出现大量如上提示,经查相关资料,这些是PHP的提示,而非报错,PHP本身不需要事先声明变量即可直接使用,但是对未声明变量会有提示。

一般作为正式的网站会把提示关掉。

关闭PHP提示:

打开php.ini文件

error_reporting=E_All 修改成 error_reporting=E_All & ~E_NOTICE

==========

还有一个方法:

在每个文件的头上加

error_reporting(0)


0 0
原创粉丝点击