ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
# get 从get中取值,若不存在则返回空字符串 *xss_clean:是否使用xss清理* ### 函数原型 ```php /** * get * @param $index * @param $xss_clean * @return string */ public function get($index, $xss_clean = true) ``` ### 使用示例 ```php public function http_index(){ $data = $this->http_input->get("data"); $this->http_output->end($data); } ```