php向input传值,thinkphp5 自定义命令行中input传值问题

thinkphp5 自定义命令行中input传值问题,官方文档只列出了如何生成命令行,但是针对input的传值没有找到任何说明文档,因此本文主要针对input的传值问题进行说明

/**

*

*

* @author moshao

* @link http://gmail.com/

* @copyright 2018 moshao all rights reserved.

* @license http://www.apache.org/licenses/LICENSE-2.0

*/

namespace app\cli\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\Db;

use think\Config;

class Chapter extends Command {

protected $pernum = 100;

protected function configure() {

//设置参数

$this->addArgument('beginid', Argument::REQUIRED); //必传参数

$this->addArgument('endid', Argument::OPTIONAL);//可选参数

//选项定义

$this-

你可能感兴趣的:(php向input传值)