\Swoole\HttpRequest

Http请求对象 Class swoole_http_request

Summary

Methods
Properties
Constants
rawContent()
$get
$post
$header
$server
$cookie
$files
$fd
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$get

$get : array

Type

array — Http请求的GET参数,相当于PHP中的$_GET,格式为数组

$post

$post : array

Type

array — HTTP POST参数,格式为数组

$header

$header : array

Type

array — Http请求的头部信息。类型为数组,所有key均为小写。

$server

$server : array

Type

array — Http请求相关的服务器信息,相当于PHP的$_SERVER数组。包含了Http请求的方法,URL路径,客户端IP等信息。

$cookie

$cookie : array

Type

array — HTTP请求携带的COOKIE信息,与PHP的$_COOKIE相同,格式为数组。

$files

$files : 

Type

$fd

$fd : 

Type

Methods

rawContent()

rawContent() : string

获取非urlencode-form表单的POST原始数据

Returns

string