yii框架通过控制台命令创建定时任务示例
假设yii项目路径为 /home/apps/
1. 创建文件 /home/apps/protected/commands/crons.php
<?php
$yii = '/home/apps/framework/yii.php';
require_once($yii);
$configfile = dirname(__file__).'/../config/console.php';
yii::createconsoleapplication($configfile)->run();
2. 创建需要的配置文件 /home/apps/protected/config/console.php,配置需要的组件、数据库连接,日志等信息,格式类似主配置文件main.php
<?php
return array(
'basepath'=>dirname(__file__).directory_separator.'..',
'name'=>'emergency',
'import'=>array(
'application.models.*',
'application.components.*',
'application.extensions.*',
),
'components'=>array(
'log'=>array(
'class'=>'clogrouter',
'routes'=>array(
array(
'class'=>'cfilelogroute',
'levels'=>'info, warning, error',
),
),
),
'db'=>array(
'class'=>'application.extensions.phppdo.cpdodbconnection',
'pdoclass' => 'phppdo',
'connectionstring' => 'mysql:host=xxxx;dbname=xxx',
'emulateprepare' => true,
'username' => 'xxx',
'password' => 'xxx',
'charset' => 'utf8',
'tableprefix' => 'tbl_',
),
),
'params' => require('params.php'),
);
3. 在 /home/apps/protected/commands/ 下新建 testcommand 类,继承 cconsolecommand,在testcommand中,可以使用项目的配置信息和yii的各种方法
<?php
class testcommand extends cconsolecommand
{
public function run()
{
...
}
}
4. 创建定时任务
$ crontab -e
插入
1 * * * * /home/php/bin/php -f /home/apps/protected/commands/crons.php test &
即为每小时的第一分钟执行testcommand类中的内容,类似的可以在/home/apps/protected/commands/下新建其他类,使用命令行执行。
上一篇: GitHub-分支管理01
下一篇: 怎样进行关键字分析