swoole-framwork/daemon.php
2024-05-20 11:51:07 +08:00

35 lines
1006 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Swoole\Http\Server;
use Swoole\Process;
if ($argc==2){
$cmd = $argv[1];
var_dump($argv);
if ($cmd=='start'){
$http = new Swoole\Http\Server('0.0.0.0',80);
//配置参数 https://wiki.swoole.com/#/server/setting
$http->set(array(
'worker_num'=>1, //设置启动的 Worker 进程数。【默认值CPU 核数】
'daemonize'=>false // 使用docker 不需要设置守护进程
));
$http->on('request',function ($req,$res){
});
$http->on('Start',function (Server $server ){
$mid = $server->master_pid; //返回当前服务器主进程的 PID。
file_put_contents("./ttt.pid",$mid); //会覆盖
});
$http->start();
} elseif ($cmd=='stop'){
$mid = intval(file_get_contents("./ttt.pid"));
if (trim($mid)){
Process::kill($mid);
}
} else {
echo '无效命令';
}
} else {
echo '无效命令';
}