欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

yii框架通过控制台命令创建定时任务示例

程序员文章站 2023-11-17 17:17:10
假设yii项目路径为 /home/apps/ 1. 创建文件 /home/apps/protected/commands/crons.php 复制代码 代码如下:<...

假设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/下新建其他类,使用命令行执行。