tp6使用cli(cmd)命令行模式調用訪問控制器

tp6使用cli(cmd)命令行模式調用訪問控制器

因爲thinkphp6 簡稱tp6,默認不支持直接cli命令行模式訪問控制器,於是利用官方的command實現了訪問控制器.

實現效果如下 ,支持多模塊:

php think action  模塊/控制器/方法

 

1.command代碼如下

<?php
/**
 * Created by wenhainan
 * 網址: https://www.waytomilky.com/
 */
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\Exception;

class Action extends Command{

    protected function configure()
    {
        $this->setName("action")
            ->addArgument("route",Argument::OPTIONAL,"your run route path!")//路由地址必須輸入
            ->addOption('option','o',Option::VALUE_REQUIRED,'set Controller Argument')
            ->setDescription("Command run Controller Action !");
    }

    protected function execute(Input $input, Output $output)
    {

        $Argument = $input->getArguments();
        if($Argument['command'] == 'action'){
            if($input->hasOption('option')){
                $params = $this->option($input->getOption('option'));
                $class_fun = $this->route($Argument['route']);
                $fun = $class_fun['fun'];
                $result = app("{$class_fun['app']}\\{$class_fun['module']}\\{$class_fun['controller']}\\{$class_fun['class']}")->$fun($params);
                $output->writeln($result);
            }else{


                $class_fun = $this->route($Argument['route']);
                // throw new Exception("類".$class_fun['class']);
                // throw new Exception("方法".$class_fun['fun']);
                $fun = $class_fun['fun'];
                $result = app("{$class_fun['app']}\\{$class_fun['module']}\\{$class_fun['controller']}\\{$class_fun['class']}")->$fun();
                $output->writeln($result);
            }
        }

    }

    public function route($route = ''){
        // throw new Exception("路由是".$route);

        $class_fun['class'] = "app\\index\\controller\\index";
        $class_fun['fun'] = "index";

        if($route){
            $app = "app";
            $controller = "controller";
            $route = explode("/",$route);
            $module = isset($route[0])?$route[0]:"index";
            $class = isset($route[1]) ? $route[1] : 'index';
            $fun = isset($route[2]) ? $route[2] : 'index';

            // $class_fun['class'] = $app."\\".$module."\\".$controller."\\".$class;
            $class_fun['class'] = $class;
            $class_fun['fun'] = $fun;
            $class_fun['module'] = $module;
            $class_fun['app'] = $app;
            $class_fun['controller'] = $controller;


        }
        return $class_fun;
    }

    public function option($option){

        /* 整理成數組 start */
        $params = array();
        $option_arr = explode(",",$option);
        foreach ($option_arr as $key=>$val){
            $temp_params = explode("=",$val);
            $params[$temp_params[0]] = $temp_params[1];
        }
        /* 整理成數組 end */
        return $params;
    }
}

2.在config/sonsole.php中,添加

"action"=>"app\common\command\Action",

3.使用案例

php think action common/test/index --option name=jack,age=10

對應控制器方法

public function index($params=array()){


        print_r($params);
        print_r("cmd輸出\n");
        return "結果";

    }

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章