--TEST-- client proxy - send proxy headers for a proxy request --SKIPIF-- getAvailableOptions()) or die("skip need libcurl with CURLOPT_PROXYHEADER support\n"); ?> --FILE-- setOptions(array( "timeout" => 10, "proxytunnel" => true, "proxyheader" => array("Hello" => "there!"), "proxyhost" => "localhost", "proxyport" => $port, )); try { $c->enqueue($r)->send(); } catch (Exception $e) { echo $e; } echo $c->getResponse()->getBody(); }); ?> ===DONE=== --EXPECTF-- Test Server on port %d CONNECT www.example.com:80 HTTP/1.1 Hello: there! Host: www.example.com:80 Proxy-Connection: Keep-Alive User-Agent: PECL_HTTP/%s PHP/%s libcurl/%s ===DONE===