TP5 command自定义指令使用方法

首先
创建一个PHP文件如
TP5 command自定义指令使用方法_第1张图片
在文件中编写

class TaskClose extends Command
{

protected function configure()
{
    $this->setName('TaskClose')->setDescription('Here is the TaskClose everyday');

}

protected function execute(Input $input, Output $output)
{
    // 设置页面执行时间
    set_time_limit(0);
    // 设置php.ini
    ini_set('memory_limit', '-1');

    $Receive_M = new ReceiveTask();
    if (false === $Receive_M->automaticTask()) {
        print($Receive_M->getError());
    }
    $output->writeln("OK");
    exit();
}

}
然后找到TP框架中的
在这里插入图片描述
在里面编写你要执行的方法如

TP5 command自定义指令使用方法_第2张图片
然后从项目中进入cmd 输入方法名
TP5 command自定义指令使用方法_第3张图片
这就完成了自定义的名利
只需在服务器上配置任务调度 定期执行该命令 就行了

你可能感兴趣的:(TP5 command自定义指令使用方法)