企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# getRawContent 获取原始的POST包体,用于非application/x-www-form-urlencoded格式的Http POST请求。(等同于原生swoole http rawContent), 此函数等同于PHP的fopen('php://input')。 ### 函数原型: ```php /** * 获取原始的POST包体 * @return mixed */ public function getRawContent() { return $this->request->rawContent(); } ```