异步 HTTP 客户端:async-http-php
程序员文章站
2022-05-19 23:38:00
...
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); */
项目主页:http://www.open-open.com/lib/view/home/1443278800029
推荐阅读
-
Java下http下载文件客户端和上传文件客户端实例代码
-
iOS应用中发送HTTP的get请求以及HTTP异步请求的方法
-
使用Spring Cloud Feign作为HTTP客户端调用远程HTTP服务的方法(推荐)
-
使用基于Python的Tornado框架的HTTP客户端的教程
-
Node.js中的http请求客户端示例(request client)
-
详解node HTTP请求客户端 - Request
-
PHP的HTTP客户端Guzzle简单使用方法分析
-
PHP Swoole异步MySQL客户端实现方法示例
-
PHP Swoole异步Redis客户端实现方法示例
-
AngularJS出现$http异步后台无法获取请求参数问题的解决方法