setName('hello') // 配置一个参数 使用$input->getArgument('username')获取 // ->addArgument('username') // 运行 "php think list" 时的简短描述 ->setDescription('定时任务微服务.') // 运行命令时使用 "--help" 选项时的完整命令描述 ->setHelp("定时任务微服务 无参数"); } /** * * 重写execute * * {@inheritdoc} * * @param Input $input * @param Output $output */ protected function execute(Input $input, Output $output) { echo 'hello world'; }}
로그인 후 복사
php think hello
hello world
를 성공적으로 호출합니다. 관련 학습 권장 사항:PHP 프로그래밍 시작부터 숙련도
위 내용은 ThinkPHP에서 명령줄(cli) Think Call을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!