多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
#### 关闭PHP提示的方法(运行出现Notice : Use of undefined constant 的完美解决方案 Notice: Use of undefined constant title - assumed 'title' in F:\wamp\www\load_myweb.php on line 22。 Notice: Use of undefined constant content - assumed 'content' in F:\wamp\www\load_myweb.php on line 22。 进入网站会出现大量类似下面的提示,但是可以正常显示和运行: Notice: Use of undefined constant title - assumed 'title' in F:\wamp\www\load_myweb.php on line 22。 这些是 PHP 的提示而非报错,PHP 本身不需要事先声明变量即可直接使用,但是对未声明变量会有提示。一般作为正式的网站会把提示关掉的,甚至连错误信息也被关掉。 关闭 PHP 提示的方法: 打开php.ini配置文件,找到:error_reporting = E_ALL,将其改为:error_reporting = E_ALL & ~E_NOTICE。 重新启动服务器,刷新页面,就看不到提示信息了。 如果只是想在本页面关闭提示信息,可以输出语句的前边加上@符号,比如: @print_r(array_diff_ukey($arry1,$arry2,a));