摘要: //三元运算 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. 阅读全文
posted @ 2012-12-10 06:38 网络剑客 阅读(175) 评论(0) 推荐(0)