StreamTransport

扩展自 AbstractTransport 实现 TransportInterface

用于使用 PHP 流的 HTTP 传输类。

1.7.3

Joomla CMS

方法

getResponse

从服务器响应中获取响应对象的方法。

getResponse(mixed||string|int headers,  body) : \Joomla\CMS\Http\Response

1.7.3

抛出

InvalidResponseCodeException

参数

headers

array<string|int, mixed>响应头作为数组。

body

string响应正文作为字符串。

响应

响应

isSupported

检查 http 传输流是否可用的方法

isSupported() : 
静态

3.0.0

响应

bool如果可用则为 true,否则为 false

request

向服务器发送请求并返回包含响应的 Response 对象。

request( method, \Joomla\Uri\UriInterface uri,  data = null, mixed||string|int headers = [],  timeout = null,  userAgent = null) : \Joomla\CMS\Http\Response

1.7.3

抛出

RuntimeException

参数

方法

string用于发送请求的 HTTP 方法。

uri

UriInterface要请求的资源的 URI。

data

mixed要与请求一起发送的关联数组或字符串。

headers

array<string|int, mixed>要与请求一起发送的请求头的数组。

timeout

int读取超时(秒)。

userAgent

string要与请求一起发送的可选用户代理字符串。

响应

响应