从cronjob运行Cakephp3代码

时间:2016-11-15 13:48:20

标签: php cron cakephp-3.0

您好我想从cronjob执行我的代码。我使用了低于2的命令,但它没有工作

/path/bin/cake transaction chekFailedTransactions

cd /path && bin/cake transaction chekFailedTransactions

我的下面是我的shell代码

<?php
namespace App\Shell;
use Cake\Console\Shell;
class TransactionShell extends Shell {  
    public function main() {
        $this->out('Some MSG');
    }
    public function chekFailedTransactions() {
        //Code to execute
        $this->out('Cron Executed!!');
    }
}
?>

0 个答案:

没有答案