mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
26 lines
541 B
PHP
26 lines
541 B
PHP
<?php
|
|
|
|
|
|
namespace app\wechat\command;
|
|
|
|
use think\admin\Command;
|
|
use think\console\Input;
|
|
use think\console\Output;
|
|
|
|
class Tests extends Command
|
|
{
|
|
protected function configure()
|
|
{
|
|
$this->setName('xadmin:tests')->setDescription('指令类任务测试');
|
|
}
|
|
|
|
protected function execute(Input $input, Output $output)
|
|
{
|
|
$max = 10000;
|
|
for ($i = 0; $i < $max; $i++) {
|
|
$this->queueProgressMessage(2, "已经完成了 $i 的计算", $i / $max * 100);
|
|
usleep(5000);
|
|
}
|
|
}
|
|
|
|
} |