php Notice : Use of undefined constant解决办法
程序员文章站
2024-02-03 17:10:40
...
错误提示: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的容错语句,就是可以将错误屏蔽掉,在页面不显示错误信息,但错误依然存在,虽然这样并不好但是可以解决问题
本文地址:
转载随意,但请附上文章地址:-)
上一篇: 常用数组、字符串的方法(详解)
下一篇: C++贪心算法实现活动安排问题
推荐阅读
-
php Notice : Use of undefined constant解决办法
-
Fatal error: Undefined class constant 'MYSQL_ATTR_USE_BUFFERED_QUERY' in D:inetpubvhostszenpty.comhttpdocsincludesdatabase,bufferedreader
-
php出现Notice : Use of undefined constant 的解决方法
-
PHP Notice: Undefined index: ... 问题的解决方法:
-
oss 报错Use of undefined constant CURLOPT_CLOSEPOLICY
-
PHP使用Session遇到的一个Permission denied Notice解决办法_PHP
-
Use of undefined constant name - assumed 'name' in …的异常,代码如下
-
PHP错误Notice: Undefined index解决方法
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 的解决办法
-
Use of undefined constant name - assumed 'name' in …的异常,代码如下