AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# post 从post中取值,若不存在则返回空字符串 *xss_clean:是否使用xss清理* ### 函数原型 ```php /** * post * @param $index * @param $xss_clean * @return string */ public function post($index, $xss_clean = true) ``` ### 使用示例 ```php public function http_index(){ $data = $this->http_input->post("data"); $this->http_output->end($data); } ```