Notice:undefined index ..错误提示解决方法_PHP教程
程序员文章站
2022-04-02 09:29:24
...
这句是在php开发中会碰的一些问题,看这提示我们都知道是变量未定义,那么下面来解决Notice:undefined index方法,
一,这个因为是变量未定义我们只要找到相关的位置加上
代码如下 | 复制代码 |
function _get($str){ 或 isset($_GET['你的变量'])?$_GET['你的变量']:''; |
上面我们只举了get的用法还有post也一样,只要把上面的get改成post.
还有一种程序的全局定义方法
代码如下 | 复制代码 |
if (!$cfg['debug']) { |
这样我们只要对变量debug进行设置0或1对错误提示进行开关了
其它网页提供的方法
方法1:服务器配置修改
修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE
方法2:在出现notice代码之前加上@,@表示这行有错误或是警告不要输出,@$username=$_post['username'];
注:如果你是利用了全局定义或在修改php.ini配置文件这样所有错误提示都不会出,这样对于开发测试来讲是相当的麻烦的,建义利用程序的方法,关闭错误提示最在在服务器上设置。
推荐阅读
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
php Notice: Undefined index 错误提示解决方法
-
PHP Notice: undefined index 完美解决方法 PHPundefined index解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP报错 Notice: Undefined index和Notice:Undefined offset:解决方法
-
关于PHP Undefined index的错误提示_PHP教程
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法,thinkphpcommon.php
-
php提示Notice: Undefined index怎么办
-
PHP Notice: undefined index原因与解决办法_PHP教程
-
php提示undefined index解决方法