X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=docs%2Fexamples%2FParallel_Requests.php;h=d9b05f0fe8b9e09163585aeede0b0dbe9958598f;hp=474adafdeb6a2c774be8c090ee2d5c206a97acfb;hb=229730a74c2686bdf501528cbe44a9421ccca61a;hpb=07af5d267afdfdaa2b7e9c29174364bf313634ef diff --git a/docs/examples/Parallel_Requests.php b/docs/examples/Parallel_Requests.php index 474adaf..d9b05f0 100644 --- a/docs/examples/Parallel_Requests.php +++ b/docs/examples/Parallel_Requests.php @@ -3,8 +3,8 @@ try { $p = new HttpRequestPool; // if you want to set _any_ options of the HttpRequest object, // you need to do so *prior attaching* to the request pool! - $p->attach(new HttpRequest('http://pear.php.net', HTTP_HEAD)); - $p->attach(new HttpRequest('http://pecl.php.net', HTTP_HEAD)); + $p->attach(new HttpRequest('http://pear.php.net', HTTP_METH_HEAD)); + $p->attach(new HttpRequest('http://pecl.php.net', HTTP_METH_HEAD)); } catch (HttpException $e) { print $e; exit;