码迷,mamicode.com
首页 > Web开发 > 详细

php中接收参数,不论是来自GET还是POST方法

时间:2014-10-29 19:11:10      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   os   ar   sp   on   cti   代码   

不多说,直接上代码,

其实也就是先用GET的方法去获取,如果值为空,在用POST方法去获取

写下来是为了方便和备忘

function getParam($str){
       if ( isset($_GET[$str]) )
             $t_Val = trim($_GET[$str]);
      else if ( isset($_POST[$str]))
            $t_Val = trim($_POST[$pi_strName]);

      return $t_Val;
}

php中接收参数,不论是来自GET还是POST方法

标签:style   io   color   os   ar   sp   on   cti   代码   

原文地址:http://www.cnblogs.com/tommy-huang/p/4060051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!