不多说,直接上代码,
其实也就是先用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;
}
时间: 2024-10-24 15:00:03