标签:extends 定时任务 control span yii2 实现 path 服务器 原理
Yii2的定时任务可以有两种写法,原理都是通过服务器的定时任务去调用
1.通过调用指定的URL访问 就相当于在浏览器中访问
2.通过console调用
下面我们就来说说Console 是如何实现定时任务的
<?php namespace console\controllers; use yii\console\Controller; class TestController extends Controller { public function actionTest() { echo "test\n"; } }
上面的例子表示每晚的21:30执行上面的定时程序
标签:extends 定时任务 control span yii2 实现 path 服务器 原理
原文地址:http://www.cnblogs.com/mr-amazing/p/6387185.html