我写了一个ConsoleCommand
从 Windows 命令提示符和 linux 终端运行的很棒的程序。我的问题是,当我在 cron 选项卡中添加此命令时,执行时出现以下错误。
此脚本必须从命令行运行。
可能是什么问题呢 ?
干得好:
class ReportGeneratorCommand extends CConsoleCommand {
public function getHelp(){
echo 'This command genearates Periodic reports'."\n\n";
return;
}
public function run($args){
echo "\n Hello world! \n";
}
}