ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# eventLoop has already been created. unable to create swoole\_server 创建`Server`出现: ~~~ PHP Fatal error: swoole_server::__construct(): eventLoop has already been created. unable to create swoole_server. ~~~ 这表示你的程序在`new swoole_server`之前使用了其他异步IO的API,底层已经创建了`EventLoop`,无法重复创建。 这是错误的用法,如果要在`Server`中使用异步的`Client`、`MySQL`、`Redis`,请在`Server`的`onWorkerStart`回调函数或其他发生在`Worker`进程内的回调函数中使用。