NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
# 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); } ```