解决关于PHP“Undefined variable”变量未定义
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-14 12:44:25 浏览: 评论:0
php中变量可以不定义的但是我们如果不对错误进行一些处理在使用未定义的变量时会提示Undefined variable错误了,下面我给大家举几个实例.
PHP错误提示“Undefined variable”:变量未定义,如果你在php.ini设置中屏蔽了Notice这个等级的提示那么他就不会显示任何提示了,但是为了程序的严谨性考虑,我们尽量避免任何警告、错误等明显的程序缺陷.
例一:class.Chinese.php中以下代码就会出错“Undefined variable”.
for ( $i=0; $i<strlen($hexdata); $i+=2 )
$bindata.=chr(hexdec(substr($hexdata,$i,2)));
正确的写法应该是如下代码:
$bindata='';
for ( $i=0; $i<strlen($hexdata); $i+=2 )
$bindata.=chr(hexdec(substr($hexdata,$i,2)));
例二:以下代码也会出错“Undefined variable”:
- $sl = "zh-CN";
- $tl = "en";
- function app_out($c,$gbk){
- $data = app_get_translate($c,$sl,$tl);
- $out = str_replace($c,$data,$c);
- return app_js_out($out,$gbk);
- }
正确的写法应该是:
- $sl = "zh-CN";
- $tl = "en";
- function app_out($c,$gbk){
- global $sl,$tl; //将此函数体内的这两个变量定义为全局变量,以便使用开头设定的值
- $data = app_get_translate($c,$sl,$tl);
- $out = str_replace($c,$data,$c);
- return app_js_out($out,$gbk);
- }
本来php是不需要定义变量的,但是出现这种情况应该怎么办呢?只要在C:WINDOWS找出php.ini,在php.ini中的302行 error_reporting = E_ALL修改成
error_reporting = E_ALL & ~E_NOTICE再重启apache2.2就行了
如果什么错误都不想让显示,直接修改:display_errors = Off
如果你没有php.ini的修改权限,可在php头部加入
ini_set("error_reporting","E_ALL & ~E_NOTICE");
Tags: Undefined variable 变量未定义
- 上一篇:php读取本地php文件源代码输出显示
- 下一篇:PHP编程之代码命名规范
相关文章
- ·PHP Fatal error: Call to undefined function bcmul()(2013-12-07)
- ·php连接mysql提示Call to undefined function mysql_connect()(2014-09-10)
- ·解决PHP提示Notice: Undefined variable的办法(2018-10-24)
- ·Call to undefined method DebugBar\\DebugBar::info()(2018-10-24)
- ·PHP 中提示undefined index如何解决(多种方法)(2021-07-14)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)