1 Star 0 Fork 0

乎指南 / swoole4_ryloo_icu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
http_server.php 294 Bytes
一键复制 编辑 原始数据 按行查看 历史
ryloo 提交于 2021-09-07 13:42 . 代码初始化
<?php
$http = new Swoole\Http\Server('0.0.0.0', 9501);
$http->on('Request', function ($request, $response) {
$response->header('Content-Type', 'text/html; charset=utf-8');
$response->end('<h1>Hello Swoole. #' . rand(1000, 9999) . '</h1>');
});
$http->start();
1
https://gitee.com/ryloo/swoole4_ryloo_icu.git
git@gitee.com:ryloo/swoole4_ryloo_icu.git
ryloo
swoole4_ryloo_icu
swoole4_ryloo_icu
master

搜索帮助