Home >Backend Development >PHP Tutorial >PHP关于兑现多线程的疑问

PHP关于兑现多线程的疑问

WBOY
WBOYOriginal
2016-06-13 10:29:10890browse

PHP关于实现多线程的疑问
我想实现一个功能。就是先从数据库中读取多条数据。

然后根据数据中某个项进行执行指定函数。

因为算法繁琐,耗时的时间很长,我想交给后台去处理。但是我不知道有什么好办法去实现。

比如说

$a = new Data("a");
$b = new Data("b");
我想在发送$a的请求之后,直接跳到执行$b的请求,以此类推.
而不是在等待$a的请求完成后再到下一个$b..

有什么好的办法?Data函数是带多个参数的..

------解决方案--------------------
你可以新建一个php程序文件 例如 runOnBackground.php
然后,在显示的程序也负责异步请求 runOnBackground.php
可以用 fsockopen() 或 socket系列函数来发送异步请求,这样你不必去等待返回值。而在runOnBackground.php页来进行复杂的计算,当然,你也同时可以提交一些参数

至于说多进程,在linux下以cgi模式运行并开启pcntl扩展即可使用,不过要远比上面的方式复杂
------解决方案--------------------
手册上有 fsockopen示例用法,你只是需要发起请求的代码:
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)
\n";
} else {
$out = "GET /runOnBackground.php?id=1&mode=hello HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
}
// 不管了,断开
fclose($fp);

在 runOnBackground.php 通过 $_GET['id'] $_GET['mode']获取参数即可,你懂得

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn