mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-11 18:55:35 +08:00
31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace ZM\Command;
|
|||
|
|
|
|||
|
|
use Symfony\Component\Console\Command\Command;
|
|||
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|||
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|||
|
|
|
|||
|
|
class DaemonStatusCommand extends DaemonCommand
|
|||
|
|
{
|
|||
|
|
protected static $defaultName = 'daemon:status';
|
|||
|
|
|
|||
|
|
protected function configure() {
|
|||
|
|
$this->setDescription("查看守护进程框架的运行状态(仅限--daemon模式可用)");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|||
|
|
parent::execute($input, $output);
|
|||
|
|
$output->writeln("<info>框架运行中,pid:" . $this->daemon_file["pid"] . "</info>");
|
|||
|
|
$output->writeln("<comment>----- 以下是stdout内容 -----</comment>");
|
|||
|
|
$stdout = file_get_contents($this->daemon_file["stdout"]);
|
|||
|
|
$stdout = explode("\n", $stdout);
|
|||
|
|
for ($i = 10; $i > 0; --$i) {
|
|||
|
|
if (isset($stdout[count($stdout) - $i]))
|
|||
|
|
echo $stdout[count($stdout) - $i] . PHP_EOL;
|
|||
|
|
}
|
|||
|
|
return Command::SUCCESS;
|
|||
|
|
}
|
|||
|
|
}
|