最新消息: 新版网站上线了!!!

yii2使用划任务的方法

  1. <?php 
  2.   
  3. namespace console\controllers; 
  4.   
  5. use yii\console\Controller; 
  6.   
  7. /** 
  8.  * Test controller 
  9.  */ 
  10. class TestController extends Controller { 
  11.   
  12.     public function actionIndex() { 
  13.         echo "cron service runnning"
  14.     } 
  15.   
  16.     public function actionMail($to) { 
  17.         echo "Sending mail to " . $to
  18.     } 
  19.   

使用

use yii\console\Controller;
执行
yii test 
D:\xampp\htdocs\yii2>d:\xampp\php\php yii test cron service runnning D:\xampp\htdocs\yii2>
window下使用
D:\xampp\htdocs\yii2>d:\xampp\php\php yii test/mail [--to="hemctest@gmail.com"]
Sending mail to [--to=hemctest@gmail.com]

转载请注明:谷谷点程序 » yii2使用划任务的方法