作者:快乐天使小可爱66 | 来源:互联网 | 2023-05-17 21:56
文章目录[隐藏]
- 准备镜像
- 配置php解释器
- 创建测试文件
- 选择刚才配置的解释器运行
准备镜像
docker pull phpswoole/swoole
配置php解释器
创建测试文件
#!/usr/bin/env php
on(
"start",
function (Server $http) {
echo "Swoole HTTP server is started./n";
}
);
$http->on(
"request",
function (Request $request, Response $response) {
$response->end("Hello, World!/n");
}
);
$http->start();
选择刚才配置的解释器运行