PHP Notice: Undefined variable

关于所有PHP Undefined variable 的警告:PHP Notice: Undefined variable

php代码的书写中经常使用未初始化的变量的问题,系统会给出Undefined variable错误提示,解决的方法:

1.对变量进行初始化,规范书写。

2.修改php.ini配置文件,找到并修改以下内容:

修改为:error_reporting = E_ALL & ~E_NOTICE

如果什么错误都不想让显示,直接修改:

display_errors = Off

如果你没有php.ini的修改权限,可在php头部加入

 ini_set("error_reporting","E_ALL & ~E_NOTICE");

即可