我有这个symfony命令在本地和服务器上运行良好。 在本地,如果我打电话或通过cron,它会起作用。
在服务器端,如果我在shell窗口调用它,它就可以工作,但是当cron调用它时,它不想工作并且把这个奇怪的错误抛给我。
命令为php ~/mg/app/console global:insert 1 -vv --env=prod
错误是
ContextErrorException in ArgvInput.php line 287: Warning: Invalid argument supplied for foreach()
in ArgvInput.php line 287
at ErrorHandler->handleError('2', 'Invalid argument supplied for foreach()', 'vendor/symfony/symfony/src/Symfony/Component/Console/Input/ArgvInput.php', '287', array('values' => array('--ansi'))) in ArgvInput.php line 287
at ArgvInput->hasParameterOption(array('--ansi')) in Application.php line 823
at Application->configureIO(object(ArgvInput), object(ConsoleOutput)) in Application.php line 123
at Application->run(object(ArgvInput)) in console line 26
我非常感谢您的帮助,我第一次看到此错误消息。
命令代码
class GlobalInsertCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('global:insert')
->addArgument('env', InputArgument::OPTIONAL, '1 | 0',0);
}
protected function execute(InputInterface $input, OutputInterface $output) {
$rootDir = $this->getContainer()->get('kernel')->getRootDir();
foreach (MyRepos::$SOURCES as $source):
if($input->getArgument("env") == 1):
$source .= " --env=prod";
endif;
MyRepos::runProcess("php $rootDir/console immobilier:insert $source -vv");
endforeach;
}
}
实际的insertCommand
class InsertCommand extends ContainerAwareCommand {
protected function configure()
{
$this
->setName('immobilier:insert')
->setDescription('Take RawData and and insert into database')
->addArgument('source', InputArgument::REQUIRED, 'all')
;
}
protected function execute(InputInterface $input, OutputInterface $output) {
$this->pc = $this->getContainer()->get('Momoa.immobilier_cron.controller');
try {
$this->pc->setChoice($input->getArgument("source"));
$this->pc->addAction();
} catch(Exception $e){
$this->logger->error($e->getMessage());
}
}
}
运行流程方法
static function runProcess($command){
$ps = new Process($command);
$ps->enableOutput();
$ps->setTimeout(null);
$ps->run(function($type, $buffer) {
echo "OUT > " . $buffer;
});
}
答案 0 :(得分:7)
所以我发现了问题,错误与命令文件的实际逻辑无关,而是php.ini选项。
首先,您需要确保在php.ini文件中将此选项设置为register_argc_argv=on
。
如果您无法更改php.ini文件,请按以下方式声明命令:
php-cli -d register_argc_argv=On /path/to/your/command