PHP语言,未赋值的变量?http://docs.php.net/manual/zh/language.types.null.php问题:1. if ($x) echo "1"; else echo "0";?>[email protected]:~$ php /var/www/b.phpPHP Notice: Undefined variable: x in /var/www/b.php on line 3上面代码,第3行错了!PHP语法,变量可以不赋值。如果,变量不赋值,其值是:NULL。对么?为什么编译,第3行出错呢? 分享到: ------解决方案--------------------这与你的 php 错误检查级别设置有关只在屏蔽掉 E_NOTICE 级别检查时,才不会报 Notice 警告程序中 error_reporting(E_ALL ^ E_NOTICE);php.ini 中 error_reporting=E_ALL ^ E_NOTICE这少要有一个------解决方案--------------------错误报告级别