Http/Client/Adapter/Curl.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Http
- Subpackage
- Client_Adapter
- Version
- $Id$
\Zend_Http_Client_Adapter_Curl
Package: Zend_Http\Client_Adapter
An adapter class for Zend_Http_Client based on the curl extension.
Curl requires libcurl. See for full requirements the PHP manual: http://php.net/curl
- Implements
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties
array $_connected_to = array(null, null)
What host/port are we connected to?
Default value
array(null, null)
Details- Type
- array
array $_invalidOverwritableCurlOptions
List of cURL options that should never be overwritten
Details
- Type
- array
Methods
__construct() : void
Adapter constructor
Config is set using setConfig()
ThrowsException | Description |
---|---|
\Zend_Http_Client_Adapter_Exception |
connect(string $host, int $port = 80, boolean $secure = false) : void
Initialize curl
Parameters
Throws
Name | Type | Description |
---|---|---|
$host | string | |
$port | int | |
$secure | boolean |
Exception | Description |
---|---|
\Zend_Http_Client_Adapter_Exception | if unable to connect |
readHeader(resource $curl, string $header) : int
Header reader function for CURL
Parameters
Returns
Name | Type | Description |
---|---|---|
$curl | resource | |
$header | string |
Type | Description |
---|---|
int |
setConfig( $config = array()) : \Zend_Http_Client_Adapter_Curl
Set the configuration array for the adapter
Parameters
Returns
Throws
Name | Type | Description |
---|---|---|
$config |
Type | Description |
---|---|
\Zend_Http_Client_Adapter_Curl |
Exception | Description |
---|---|
\Zend_Http_Client_Adapter_Exception |
setCurlOption(string | int $option, mixed $value) : \Zend_Http_Adapter_Curl
Direct setter for cURL adapter related options.
Parameters
Returns
Name | Type | Description |
---|---|---|
$option | string | int | |
$value | mixed |
Type | Description |
---|---|
\Zend_Http_Adapter_Curl |
setOutputStream(resource $stream) : \Zend_Http_Client_Adapter_Socket
Set output stream for the response
Parameters
Returns
Name | Type | Description |
---|---|---|
$stream | resource |
Type | Description |
---|---|
\Zend_Http_Client_Adapter_Socket |
write(string $method, \Zend_Uri_Http $uri, $httpVersion = 1.1, array $headers = array(), string $body = '') : string
Send request to the remote server
Parameters
Returns
Throws
Name | Type | Description |
---|---|---|
$method | string | |
$uri | \Zend_Uri_Http | |
$httpVersion | ||
$headers | array | |
$body | string |
Type | Description |
---|---|
string | $request |
Exception | Description |
---|---|
\Zend_Http_Client_Adapter_Exception | If connection fails, connected to wrong host, no PUT file defined, unsupported method, or unsupported cURL option |