ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
* [ ] 发送数据 ``` Response::WebSend($Content); ``` Content(null|string):发送的内容 ***** 此方法可以在项目中使用,功能和Worker:`$Obj->send();`,Swoole:`$Res->end($Content);`相同 ``` //Workerman $HttpObj->onMessage = function ($Obj,$Req) { $Obj->send('hello world'); }; ``` ~~~ //Swoole (启动模式正在开发中) $http->on("request", function ($Req, $Res) { $Res->end('hello world'); }); ~~~