ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
# 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(); } ```