php提示undefined index解决方法
程序员文章站
2024-02-01 16:38:52
...
在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提示undefined index解决方法
-
php网站提示“您不具备查...资源进行了配置”的解决方法_PHP教程
-
php出现Notice : Use of undefined constant 的解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法_php实例
-
php运行出现Call to undefined function curl_init()的解决方法
-
PHP Notice: Undefined index: ... 问题的解决方法:
-
php运行提示:Fatal error Allowed memory size内存不足的解决方法
-
[乐意黎原创] php 页面提示 Fatal error: Call to undefined function curl_init()
-
PHP错误Notice: Undefined index解决方法
-
destoon会员注册提示“数据校验失败(2)”解决方法_PHP教程