錯誤Argument 2 passed to Swoole\Server::on() must be callable, array given
swoole使用on()繫結事件報錯Argument 2 passed to Swoole\Server::on() must be callable, array given
查閱文件
swoole支援四種方式繫結回撥
四種設定回撥函式的方式
我的解決辦法
我這裡是因為繫結的回撥函式不是public許可權,改成public就行了
public function pokerOpen($serv, $frame)
$this->serv->on('start', ([$this, 'pokerOpen']));
本作品採用《CC 協議》,轉載必須註明作者和本文連結