PHP开发实例大全(提高卷) 中文完整pdf扫描版[244MB]
- <?php
- namespace console\controllers;
- use yii\console\Controller;
- /**
- * Test controller
- */
- class TestController extends Controller {
- public function actionIndex() {
- echo "cron service runnning";
- }
- public function actionMail($to) {
- echo "Sending mail to " . $to;
- }
- }
使用
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使用划任务的方法