php提示undefined index解决方法_PHP教程
程序员文章站
2022-05-25 18:56:23
...
在php开发中经常会出现undefined index这种错误提示,下面我们看看方法总结吧。
平时用$_post[''],$_get['']获取表单中参数时会出现Notice: Undefined index: --------;
服务器配置修改
修改php.ini配置文件,
代码如下 | 复制代码 |
error_reporting = E_ALL & ~E_NOTICE |
程序判断
代码如下 | 复制代码 |
function _get($str){ |
还有一种方法就是在php把错误关闭了代码
代码如下 | 复制代码 |
error_reporting(E_ALL ^ E_NOTICE); |
用isset方法
代码如下 | 复制代码 |
$var = isset($_GET['a'])?$_GET['a']:''; |
推荐阅读
-
php采用curl访问域名返回405 method not allowed提示的解决方法
-
PHP执行Curl时报错提示CURL ERROR: Recv failure: Connection reset by peer的解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
php启动时候提示PHP startup的解决方法
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
-
yiic命令时提示“php.exe”不是内部或外部命令的解决方法
-
Notice: Undefined index: page in E:PHP est.php on line 14
-
php提示Failed to write session data错误的解决方法
-
PHP Undefined index报错的修复方法
-
php运行提示:Fatal error Allowed memory size内存不足的解决方法