cakephp - 从组件调用shell

时间:2014-04-03 11:44:03

标签: php shell cakephp

如何从我的组件中调用shell。

这是我的shell

<?php 
   class PrintShell extends AppShell {

    function main()
    {
        App::import(‘Component’, ‘BusinessLogic’);
        $businessLogic = & new BusinessLogicComponent();
        $businessLogic->initialize();
        $settings = $businessLogic->senReminderEmail();
        // senReminderEmail Mail function is defined in my Controller/Components/BusinessLogicComponent.php File
    }

}
?>

我不希望它使用命令调用。 我怎么能这样做。任何帮助 这有道理吗?

1 个答案:

答案 0 :(得分:-1)

你想打电话给shell 我想,你想在cakephp中使用cron job吗? 主要是apphell用于处理cron作业,我也遇到了这个,我没有使用appshell我从godaddy服务器设置我的cron作业,并把所有文件放在webroot文件夹中,可能在cron时间运行,所以我只是验证..亲爱..