如何从shell外部运行任务

时间:2011-07-19 21:03:38

标签: cakephp cakephp-1.3

嗨我想访问shell外部的任务并从我的app / controller执行它。我怎么能这样做

<?php
 class SeaShell extends Shell { // found in /vendors/shells/sea.php  
     var $tasks = array('Sound'); //found in /vendors/shells/tasks/sound.php 
     function main() {      
                  $this->Sound->execute();   
     }
 }
?>

1 个答案:

答案 0 :(得分:2)

我建议你把你的逻辑放在模型或组件中。这样,它可以从shell和控制器访问。