public function getPostParam($str)
{
if ('' != $str && isset($_POST[$str]))
{
return trim($_POST[$str]);
}
return '';
}
public function getGetParam($str)
{
if ('' != $str && isset($_GET[$str]))
{
return trim($_GET[$str]);
}
return '';
}
public function getParam($str)
{
if ('' === $re = $this->getGetParam($str))
{
$re = $this->getPostParam($str);
}
return $re;
}
{
if ('' != $str && isset($_POST[$str]))
{
return trim($_POST[$str]);
}
return '';
}
public function getGetParam($str)
{
if ('' != $str && isset($_GET[$str]))
{
return trim($_GET[$str]);
}
return '';
}
public function getParam($str)
{
if ('' === $re = $this->getGetParam($str))
{
$re = $this->getPostParam($str);
}
return $re;
}
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/1578/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
评论列表