php提示 Notice: Use of undefined constant name - assumed
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-04 21:16:28 浏览: 评论:0
我们知道php在数组中写变量有二几种方法,我们出现这种提示就是你写成了[name]这种所以会有Notice: Use of undefined constant name - assumed name提示了,解决办法参考下文。
关闭 PHP 提示的方法,搜索php.ini:
error_reporting = E_ALL 改为:error_reporting = E_ALL & ~E_NOTICE
还有个不是办法的办法就是,在每个文件头上加
error_reporting(0); 虽然不好弄但是可以解决问题,如果没有修改php.ini权限的朋友可参考我的方法来解决,源文件:
- $room[name] = $Name;
- $room[retailrate] = $RetailRate;
改成
- $room['name'] = $Name;
- $room['retailrate'] = $RetailRate;
Tags: 提示 Notice: undefined
相关文章
- ·Notice:undefined index ..错误提示解决方法(2013-12-02)
- ·php提示PHP class x has no unserializer解决办法(2013-12-02)
- ·linux中phpMyAdmin错误提示Wrong permissions on configuration file, should no(2013-12-02)
- ·PHP中显示出错提示方法介绍(2013-12-03)
- ·phpmyadmin提示无法载入mysqli扩展解决方法(2013-12-03)
- ·php错误提示:Call-time pass-by-reference has been deprecated(2013-12-04)
- ·PHP关闭Notice错误提示(2014-01-03)
- ·php 关闭错误提示方法总结与性能分析(2014-01-03)
- ·php开启与关闭错误提示(2014-02-18)
- ·php删除一条记录(删除确认提示)(2014-05-31)
- ·php错误提示 open_basedir restriction in effect 解决(2014-09-20)
- ·解决php curl获取网页内容提示405 method not allowed状态码(2014-09-21)
- ·php提示Notice: Use of undefined constant错误(2014-09-21)
- ·php实现简单跳转提示的示例代码(2020-02-03)
- ·基于PHP的跳转提示框的实现示例(2020-02-25)
- ·PHP弹出提示框并跳转到新页面即重定向到新页面(2020-08-31)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)