• ThinkPHP 定时任务


    在 application/admin/command  目录下新建一个 Test.php 文件

    namespace app\admin\command;
    
    use think\console\Command;
    use think\console\Input;
    use think\console\Output;
    use think\Db;
    
    class Test extends Command
    {
        protected function configure(){
            $this->setName('test')->setDescription("计划任务 Test");
        }
        // 调用Test 这个类时,自动调用 execute 这个方法 
        protected function execute(Input $input, Output $output){
            $output->writeln('Date Crontab job start...');
            /*** 这里写计划任务列表集 START ***/
     
            $this->test();
     
            /*** 这里写计划任务列表集 END ***/
            $output->writeln('Date Crontab job end...');
        }
    
        private function test()
        {
            echo '定时任务成功啦~';
        }
    
    }

    修改 application/command.php

    return [
        'app\admin\command\Test'
    ];

    进入项目目录 (并非是根目录) ,使用命令查看

    php think

    运行定时任务

    php think test

    Liunx 中编辑crontab

    # 编辑crontab
    crontab -e
    
    # 进入编辑模式后添加如下内容
    * * * * * php /home/wwwroot/demo.com/think test    # 每分钟执行一次计划任务
    
    # 保存退出后重启crontab
    /etc/init.d/crond restart

    效果图如下:

    如果没有使用ThinkPHP 自身的定时任务,需要执行指定控制器,在Liunx 中编辑 crontab 

    * * * * * /usr/bin/php /www/yoursite/public/index.php /tool/Crontab/execCrontab > /dev/null  2>&1 &
  • 相关阅读:
    机器学习---14
    机器学习---13
    机器学习--10
    机器学习--9
    机器学习--8
    机器学习--7
    机械学习--6
    大数据应用技术课程实践--选题与实践方案
    15.手写数字识别-小数据集
    14.深度学习-卷积
  • 原文地址:https://www.cnblogs.com/xuey/p/16056083.html
Copyright © 2020-2023  润新知