yii linux 自动执行脚本

今天用yii开发的系统中要配置一个自定执行的脚本

1.配置好product/config/console.php里面需要用到的组件,像数据库连接

 
 
  
  
  
  
  1. 'db'=>array(
  2. 'connectionString' => 'mysql:host=localhost;dbname=testdrive',
  3. 'emulatePrepare' => true,
  4. 'username' => 'root',
  5. 'password' => '',
  6. ),

2.继承CConsoleCommand写入自己的命令类。

Yii提供了两种方式去执行,如果你执行单一的任务,直接在run方法里面写,另外一种就和Controller(控制器)中的Action(动作)类似,前面增加actionXXX,在framework/console下提供了很多实例供我们参考使用。例如CHelpCommand直接使用run:

 
 
  
  
  
  
  1. class CHelpCommand extends CConsoleCommand
  2. {
  3. /**
  4. * Execute the action.
  5. * @param array $args command line parameters specific for this command
  6. */
  7. public function run($args)
  8. {
  9. $runner=$this->getCommandRunner();
  10. $commands=$runner->commands;
  11. if(isset($args[0]))
  12. $name=strtolower($args[0]);
  13. if(!isset($args[0]) || !isset($commands[$name]))
  14. {
  15. if(!emptyempty($commands))
  16. {
  17. echo "Yii command runner (based on Yii v".Yii::getVersion().")\n";
  18. echo "Usage: ".$runner->getScriptName()." <command-name> [parameters...]\n";
  19. echo "\nThe following commands are available:\n";
  20. $commandNames=array_keys($commands);
  21. sort($commandNames);
  22. echo ' - '.implode("\n - ",$commandNames);
  23. echo "\n\nTo see individual command help, use the following:\n";
  24. echo " ".$runner->getScriptName()." help <command-name>\n";
  25. }else{
  26. echo "No available commands.\n";
  27. echo "Please define them under the following directory:\n";
  28. echo "\t".Yii::app()->getCommandPath()."\n";
  29. }
  30. }else
  31. echo $runner->createCommand($name)->getHelp();
  32. }
  33. /**
  34. * Provides the command description.
  35. * @return string the command description.
  36. */
  37. public function getHelp()
  38. {
  39. return parent::getHelp().' [command-name]';
  40. }
  41. }

接下来使用使用Action执行清理命令

 
 
  
  
  
  
  1. class CleanupCommand extends CConsoleCommand {
  2.  
  3. private $sessionTableName = 'it_common_session';
  4.  
  5. /**
  6. * 自动执行清理Session,每2分钟.
  7. */
  8. public function actionSession() {
  9. $now = time();
  10. $sql="DELETE FROM {$this->sessionTableName} WHERE lastactivity < $now";
  11. $command = Yii::app()->db->createCommand($sql);
  12. $command->execute();
  13. }
  14.  
  15. /**
  16. * 清理系统缓存,每天早上7:30
  17. */
  18. public function actionCache() {
  19. Yii::app()->cache -> flush();
  20. Yii::app()->dbcache -> flush();
  21. Yii::app()->fcache -> flush();
  22. }
  23.  
  24. /**
  25. * 清除上传临时文件
  26. */
  27. public function actionTempfiles() {
  28. $dir = Yii::getPathOfAlias('site.frontend.www.uploads.temp').'/';
  29. foreach(glob($dir.'*.*') as $v){
  30. unlink($v);
  31. }
  32. }
  33. }

3.使用Linux命令, vi crontab -e 打开自动执行tab, 增加一行

 
 
  
  
  
  
  1. 30 2 * * * php /path/to/console.php cleanup xxx这里的参数放action >> /path/to/logfile

需要在Yii应用目录下创建和入口文件同级的console.php:

 
 
  
  
  
  
  1. <?php
  2. $yiic=dirname(__FILE__).'/protected/yiic.php';
  3. $config=dirname(__FILE__).'/protected/config/console.php';
  4. @putenv('YII_CONSOLE_COMMANDS='.dirname(__FILE__).'/protected/commands');
  5.  
  6. require_once($yiic);

上面的意思是说每天晚上两点自动执行清理任务,简单几步就完成了强大的自动化功能任务,是不是够简单?

常见问题:

1).如果crontab 没有自动执行,仔细检测你的语法是否正确。

2).确定protected/yiic 文件是否有执行权限, 如果没有使用命令 chmod +x yiic 授权


你可能感兴趣的:(crontab,yii)