作者:羚瑞聪羊奶粉 | 来源:互联网 | 2013-04-22 17:17
使用示例如下,在request的时候能够定义请求完成之后的callback函数。<?php$base=event_base_new();$uri="http://www.baidu.com/";$config=array('eventba
使用示例
如下,在request的时候能够定义请求完成之后的callback函数。
$base = event_base_new();
$uri = "http://www.baidu.com/";
$cOnfig= array(
&#39;eventbase&#39; => $base
);
for($i = 0; $i <10; $i++) {
$client = new AsyncHttpClient($uri, $config);
$client->request(function($result) {
echo "Result len:";
echo strlen($result[&#39;response&#39;]);
// parse response with Zend_Http_Response
$respOnse= Zend_Http_Response::fromString($result[&#39;response&#39;]);
echo $response->getBody();
echo "\n";
});
}
event_base_loop($base);
echo "done\n";
?>
目前的实现比较初级,只做了get方法的封装,如果需要http上传或者post,还需要另外实现。另外这个类也需要php的libevent扩展。