💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## onRequest 函数原型: ``` $http_server->on('request', function(swoole_http_request $request, swoole_http_response $response) { $response->end("<h1>hello swoole</h1>"); }) ``` 在收到一个完整的Http请求后,会回调此函数。回调函数共有2个参数: * $request:Http请求信息对象,包含了header/get/post/cookie等相关信息 * $response:Http响应对象,支持cookie/header/status等Http操作 * 在onRequest回调函数返回时底层会销毁$request和$response对象,如果未执行$response->end()操作,底层会自动执行一次$response->end("") ## 注: > $response/$request对象传递给其他函数时,不要加`&`引用符号 $response/$request对象传递给其他函数后,引用计数会增加,onRequest退出时不会销毁