<?php class context { /** * 获取 设置参数 * @param $key * @param null $value * @param null $default * @todo 获取GET POST的值和设置值的方法 * @author http://www.php.cn/ * @return null */ static public function get($key, $value = NULL, $default = NULL) { if ($value == NULL) { if (isset($_GET[$key])) { return $_GET[$key]; } else if (isset($_POST[$key])) { return $_POST[$key]; } else { return $default; } } else { $_GET[$key] = $value; $_POST[$key] = $value; } } }