异步HTTP客户端async-http-php.zip

时间:2022-08-06 23:33:13
【文件属性】:

文件名称:异步HTTP客户端async-http-php.zip

文件大小:8KB

文件格式:ZIP

更新时间:2022-08-06 23:33:13

开源项目

async-http-php 是个异步 HTTP 客户端,机遇 crul_mulit*,系统很简单,速度非常快。如果你想使用 ssl 或者其他来请求一个网站,你可以实现一个 task 类和 TaskInterface 接口:date_default_timezone_set("PRC"); require dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; $async = new \Jenner\Http\Async(); $task = \Jenner\Http\Task::createGet("http://www.baidu.com"); $async->attach($task, "baidu"); $task2 = \Jenner\Http\Task::createGet("http://www.sina.com"); $async->attach($task2, "sina"); $task3 = \Jenner\Http\Task::createGet("http://www.qq.com"); $async->attach($task3, "qq"); /**  * you can do something here before receive the http responses  * eg. query data from mysql or redis.  */ while(true){     // nonblock     if(!$async->isDone()){         echo "I am running" . PHP_EOL;         sleep(1);         continue;     }     $result = $async->execute();     print_r($result);     break; } /**  * or you just call execute. it will block the process until all tasks are done.  * $result = $async->execute();  * print_r($result);  */ 标签:async


【文件预览】:
async-http-php-master
----src()
--------TaskInterface.php(350B)
--------Task.php(4KB)
--------Async.php(4KB)
----examples()
--------promise.php(590B)
--------simple.php(1KB)
----LICENSE(1KB)
----README.md(2KB)
----tests()
--------performance_async.php(772B)
--------performance_sync.php(737B)
----.gitignore(20B)
----composer.json(488B)

网友评论