>  기사  >  PHP 프레임워크  >  ThinkPHP에서 명령줄(cli) Think Call을 사용하는 방법

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

coldplay.xixi
coldplay.xixi앞으로
2020-06-30 17:47:244677검색

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으로 문의하시기 바랍니다. 삭제