摘要:
//三元运算
function getParam($param, $type, $default = '')
{ switch ($type) { case 'POST' : $result = lib_replace_end_tag(trim($_POST[$param])); break; case 'GET' : $result = lib_replace_end_tag(trim($_GET[$param])); break; default : $result = lib_replace_end_tag(trim($_POST[$pa.
阅读全文