Lines Matching full:curl
8 * HTTP handler that uses cURL easy handles as a transport layer.
12 * When using the CurlHandler, custom curl options can be specified as an
13 * associative array of curl option constants mapping to values in the
14 * **curl** key of the "client" key of the request.
21 /** @var array Array of curl easy handles */
24 /** @var array Array of owned curl easy handles */
33 * - factory: Optional callable factory used to create cURL handles.
35 * array of the curl handle, headers resource, and body resource.
91 $response['curl']['error'] = curl_error($h);
92 $response['curl']['errno'] = curl_errno($h);
93 $response['transfer_stats'] = array_merge($response['transfer_stats'], $response['curl']);