php数组提示Notice: Undefined offset解决办法_PHP教程
程序员文章站
2022-05-22 10:04:45
...
我们在使用数组时经常会碰到数组不存在了,导致我们珍array[100]这样时出现Notice: Undefined offset错误,下面我来给大家介绍如何解决这种问题
例:
代码如下 | 复制代码 |
$array[1] ='www.bKjia.c0m'; echo $array[0] ; |
输入结果是
Notice: Undefined offset: 1 in D:wwwrootwraskseo404.php on line 5 下面我们来看解决办法
解决这个问题很简单如
代码如下 | 复制代码 |
echo isset($array[0])?$array[0]:'数组未定义'; |
这样就很好的解决这个问题了。
推荐阅读
-
php Notice: Undefined index 错误提示解决方法
-
PHP提示 Notice: Undefined variable
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
测试PHP代码时PHP提示Notice:Undefinedvariable问题及解决办法
-
PHP中出现Notice: Undefined index的三种解决办法
-
PHP报错 Notice: Undefined index和Notice:Undefined offset:解决方法
-
PHP提示Notice: Undefined variable的解决办法
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
preg_match正则匹配提示pcre.backtrack_limit解决办法_PHP教程
-
关于PHP Undefined index的错误提示_PHP教程