Posted on Sep 4, 2012 by
Happy Dog
see below code i added Host: www.oozk.com .but it seem not working;
<?php
require("RollingCurl.php"); function request_callback($response, $info, $request) {
print_r($info);
echo "<hr>";
print_r($response);
echo "<hr>";
}
// top 20 sites according to alexa (11/5/09) $urls = array("http://127.0.0.1", "http://127.0.0.1");
$headers = "Host: www.oozk.com"; $rc = new RollingCurl("request_callback"); $rc->window_size = 20; foreach ($urls as $url) { $request = new RollingCurlRequest($url,'GET',NULL,$headers); $rc->add($request); } $rc->execute();
Comment #1
Posted on Sep 5, 2012 by Happy Dogsorry, i found the problem
Status: New
Labels:
Type-Defect
Priority-Medium