最近遇到一个需求,异步请求对一个慢查询的结果进行缓存,先返回缓存的结果,然后继续获取数据缓存下来。写个demo记录下
使用register_shutdown_function函数
register_shutdown_function — 注册在关闭时执行的函数
register_shutdown_function(callable
$callback
, mixed ...$args
): void注册一个 callback
,它会在脚本执行完成或者 exit() 后被调用。
<?phpclass Test
{public function test1($a, $b){sleep(4);echo 'test-1<br/>';file_put_contents('E:/code/files/test.txt', json_encode(compact('a', 'b')) . 'aaaaaa');}function test(){echo 'test<br/>';register_shutdown_function([$this, 'test1'], 2, 3);echo 'test end<br/>';return 2;}
}$t = new Test();
$res = $t->test();
var_dump($res);
期望数据立即返回,而程序继续执行,然而实际上数据等全部程序执行完才返回
使用ob系列函数
<?phpclass Test
{public function test1($a, $b){sleep(4);echo 'test-1<br/>';file_put_contents('E:/code/files/test.txt', json_encode(compact('a', 'b')) . 'aaaaaa');}function test(){echo 'test<br/>';ob_end_clean();header("Connection: close");header("HTTP/1.1 200 OK");header("Content-Type: application/json;charset=utf-8");ob_start();echo json_encode(['a' => 1]);$size = ob_get_length();header("Content-Length: $size");ob_end_flush();flush();if (function_exists("fastcgi_finish_request")) {fastcgi_finish_request();}sleep(2);set_time_limit(0);$this->test1(2, 3);// register_shutdown_function([$this, 'test1'], 2, 3);echo 'test end<br/>';return 2;}
}$t = new Test();
$res = $t->test();
var_dump($res);
此时数据即刻返回,而程序仍然执行