当前位置:   article > 正文

PHP 创建命令启动_php 前端启动命令

php 前端启动命令

TP5.1使用命令执行一个方法
看到有其他的教程中说要配置command.php文件,我本次未配置
如果有遇到无法运行到程序的,可以按以下来配置

<?php
return [
    'app\index\command\Transform',
];
  • 1
  • 2
  • 3
  • 4

然后就是在application 创建一个command文件夹,在里面创建命令类文件,名字自己取,我这里是Transform.php

<?php
namespace app\command;

use think\console\Command;
use think\console\Input;
use think\console\Output;

class Transform extends Command
{
    protected  function configure(){
        $this->setName('Trans')->setDescription('数据转换描述内容');
    }

    protected function execute(Input $input, Output $output)
    {
        $Transform = new \app\index\controller\Transform();
        $re = $Transform->trans();
        if($re == 'ok'){
            $output->write('success');
        }else{
            $output->write('error');
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

在这里插入图片描述
在项目输入 php think Trans 运行,则可以看到运行结果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/491883
推荐阅读
相关标签
  

闽ICP备14008679号