Export to GitHub

rolling-curl - issue #26

i added header , but it seems not working


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 &quot;&lt;hr&gt;&quot;;
print_r($response);
echo &quot;&lt;hr&gt;&quot;;

}

// top 20 sites according to alexa (11/5/09) $urls = array("http://127.0.0.1&quot;, "http://127.0.0.1&quot;);

$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 Dog

sorry, i found the problem

Status: New

Labels:
Type-Defect Priority-Medium