php:undefined index的几种解决方法_PHP教程
程序员文章站
2022-05-22 20:54:19
...
平时用$_post[''],$_get['']获取表单中参数时会出现Notice: Undefined index: --------;
虽然可以通过设置错误显示方式来隐藏这个提示,但是这样也有隐患,就是在服务器的日志中会记录这些提示,导致日志文件异常庞大。
通过在网上搜索和自己自身的实战总结几种解决方法;
方法1:服务器配置修改
修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE
方法2:对变量进行初始化。
方法3:做判断isset($_post['']),empty($_post['']) if --else
方法4:在出现notice代码之前加上@,@表示这行有错误或是警告不要输出,@$username=$_post['username'];
方法5:最后一种很实用,是别人写的一个函数,通过这个函数进行传递值。
定义一个函数:
function _get($str){
$val = !empty($_GET[$str]) ? $_GET[$str] : null;
return $val;
}然后在用的时候,直接用 _get('str') 代替 $_GET['str'] 就行啦~
摘自 ms.元
推荐阅读
-
php中出现:Call to undefined function curl_init()的解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法_PHP
-
php采集时被封ip的解决方法_PHP教程
-
php Undefined variable和 Undefined index_PHP教程
-
php运行环境出现Undefined index 或variable时解决方法_PHP教程
-
IE6通过get发送奇数个汉字请求会乱码的解决方法_PHP教程
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创,thinkphprun_PHP教程
-
fleaphp下不确定的多条件查询的巧妙解决方法_PHP教程
-
PHP警告Cannot use a scalar value as an array的解决方法_PHP教程
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open 的解决方法