Class ClientStatic

Summary

Fully Qualified Name: Zend\Http\ClientStatic

Description

Http static client

Methods

Name Description Defined By
get() HTTP GET METHOD (static) ClientStatic
post() HTTP POST METHOD (static) ClientStatic

Method Details

get()

HTTP GET METHOD (static)

Parameter Name Type Description
$url string
$query array
$headers array
$body mixed
$clientOptions array|\Traversable

Returns: \Response|bool

post()

HTTP POST METHOD (static)

Parameter Name Type Description
$url string
$params array
$headers array
$body mixed
$clientOptions array|\Traversable

Returns: \Response|bool

Top