请教webman如何在控制器的方法return之后不主动关闭http连接?
<?php namespace app\controller; use support\Request; class FooController { public function hello(Request $request) { return response('hello webman'); // 比如我有一个异步的方法,在return之前不会立即返回数据 } }
return不会关闭连接,你可以先发一个http头过去,然后异步发送包体。 参考 https://www.workerman.net/plugin/157
👍🏻
👍
return不会关闭连接,你可以先发一个http头过去,然后异步发送包体。
参考 https://www.workerman.net/plugin/157
👍🏻
👍