mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 13:14:52 +08:00
27 lines
816 B
PHP
27 lines
816 B
PHP
<?php
|
||
|
||
|
||
namespace ZM\Command;
|
||
|
||
use Symfony\Component\Console\Command\Command;
|
||
use Symfony\Component\Console\Input\InputInterface;
|
||
use Symfony\Component\Console\Output\OutputInterface;
|
||
use ZM\Utils\DataProvider;
|
||
|
||
class DaemonStopCommand extends DaemonCommand
|
||
{
|
||
protected static $defaultName = 'daemon:stop';
|
||
|
||
protected function configure() {
|
||
$this->setDescription("停止守护进程下运行的框架(仅限--daemon模式可用)");
|
||
}
|
||
|
||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||
parent::execute($input, $output);
|
||
system("kill -INT " . intval($this->daemon_file["pid"]));
|
||
unlink(DataProvider::getWorkingDir() . "/.daemon_pid");
|
||
$output->writeln("<info>成功停止!</info>");
|
||
return Command::SUCCESS;
|
||
}
|
||
}
|