tp定时任务,传参问题
<?php
namespace app\command;
use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\input\Option;
use think\console\Output;
use think\Request;
use think\Db;
class Test extends Command{ //继承think\console\Command
/**
* 重写configure
* {@inheritdoc}
*/
protected function configure()
{
//设置参数
$this->addArgument('email', Argument::REQUIRED); //必传参数
$this->addArgument('mobile', Argument::OPTIONAL);//可选参数
//选项定义
$this->addOption('page', 'm', Option::VALUE_REQUIRED, 'test');//选项值必填
$this->addOption('status', 's', Option::VALUE_OPTIONAL, 'test'); //选项值选填
$this->setName('test')
->setDescription('执行定时!');
}
/**
* 重写execute
* {@inheritdoc}
*/
protected function execute(Input $input, Output $output)
{
//获取参数值
$args = $input->getArguments();
$output->writeln('The args value is:');
print_r($args);
$options = $input->getOptions();
$output->writeln('The options value is:');
echo $options['page'];
$output->writeln('执行成功');
}
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步