PHP代码是由上往下执行, 很多时候php都是在等获取完数据。比如 执行过程中我们可能要等获取完远程的数据,又或者执行完一个复杂的sql查询,反正都是在等。难道就不能在程序等待的时候干点别的事情吗?
如果你有写过JS,你可能会想到回调和DOM事件。另外还可能想到php中也有回调,但处理回调的方式可能不大一样。下面,我们将来讨论下event loop如何工作的,还有怎么在PHP中使用event loop。
一、什么是轮询(Event Loop)
首先,扫下盲,轮询也称为事件循环,具体解释可以猛击这里
为了更好去理解轮询,我们来看下在浏览器中怎么使用js代码实现的:
setTimeout(function() {
console.log(“inside the timeout”);
}, 1);
console.log(“outside the timeout”);
chrome浏览器控制器中,我们可以看到先打印outside the timeout,然后打印inside the timeout。
然后, 我们勉强使用php来模拟js中的setTimeout,其代码如下:
function setTimeout(callable $callback, $delay) {
$now = microtime(true);
while (true) {
if (microtime(true) – $now > $delay) {
$callback();
return;
}