ThinkPHP에서 명령줄(cli) Think Call을 사용하는 방법

coldplay.xixi
풀어 주다: 2020-07-03 14:25:28
앞으로
4698명이 탐색했습니다.

ThinkPHP에서 명령줄(cli) Think Call을 사용하는 방법

일부 시나리오에서는 명령줄에서 코드를 호출해야 합니다

  1. 먼저 applicationcommand 디렉터리에 새 hello.php를 만듭니다(없으면 만듭니다):
    <?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;
    class hello extends Command {
     /**
      * 重写configure
      * {@inheritdoc}
      */
     protected function configure()
     {
         $this
             // 命令的名字("think" 后面的部分)
             ->setName(&#39;hello&#39;)
             // 配置一个参数 使用$input->getArgument(&#39;username&#39;)获取
             // ->addArgument(&#39;username&#39;)
             // 运行 "php think list" 时的简短描述
             ->setDescription(&#39;定时任务微服务.&#39;)
             // 运行命令时使用 "--help" 选项时的完整命令描述
             ->setHelp("定时任务微服务 无参数");
     }
     /**
      *  * 重写execute
      *  * {@inheritdoc}
      *  
      * @param Input $input
      * @param Output $output
      */
     protected function execute(Input $input, Output $output)
     {
         echo &#39;hello world&#39;;
     }}
    로그인 후 복사
  2. Modify application/command.php (그렇지 않은 경우 생성)
    <?php
    return [
     "app\command\hello",];
    로그인 후 복사
  3. cd를 프로젝트 루트 디렉터리로 이동하고 명령줄에
    php think hello
    로그인 후 복사
  4. OK를 입력한 후
    hello world
    로그인 후 복사

를 성공적으로 호출합니다. 관련 학습 권장 사항: PHP 프로그래밍 시작부터 숙련도

위 내용은 ThinkPHP에서 명령줄(cli) Think Call을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:learnku.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿