如何编写异步PHP代码

时间:2011-11-05 19:21:53

标签: php asynchronous parallel-processing

我有一些代码可以执行类似伪代码的操作:

Use CURL to get site1 into a variable
Use CURL to get site2 into a variable
Use CURL to get site3 into a variable
Use CURL to get site4 into a variable

Do lots of processing on each

Produce output

echo output

目前偶尔需要很长时间。

我想让CURL位并行运行,这样我就能加快速度。

我该怎么做?

3 个答案:

答案 0 :(得分:2)

我认为您正在寻找此http://php.net/manual/en/function.curl-multi-init.php并行cURL请求。

答案 1 :(得分:1)

据我所知,php不支持异步IO。

但我可以推荐Node.js,它确实支持它,这是它的优点。 Node.js的另一个优点是您可以在客户端和服务器端使用表单验证。

答案 2 :(得分:0)

仅仅为了未来的人,我实际上计划将一些逻辑移动到客户端,然后使用AJAX在每个文件中请求一个CURL的PHP​​文件。这样我就可以一次请求所有文件,然后使用JS来解析和整理结果。