嗨我想访问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();
}
}
?>
答案 0 :(得分:2)
我建议你把你的逻辑放在模型或组件中。这样,它可以从shell和控制器访问。