Symfony数据导出文件位置的最佳实践

我正在编写一个控制台命令,用于生成供外部服务使用的数据文件(例如,Google Feed,库存Feed等).生成的数据文件的位置是否应该在Symfony应用程序中?我知道他们实际上可以在任何地方,我只是想知道是否有标准的方法来做到这一点. 最佳答案 这取决于你,但最好在参数中包含此路径.例如,您可以拥有与命令相关的参数组.这允许您根据当前环境具有不同的配置:

parameters:
    # /app/config.yml 
    # @see MyExportCommand.php
    my_export_command:
        base_path:       '/data/ftp/export'
        other_command_related_param: true

在命令中,获取并将这些参数存储在initialize函数中:

// MyExportCommand.php
protected function initialize(InputInterface $input, OutputInterface $output)
{
    $this->parameters = $this->getContainer()->getParameter('my_export_command');
}

最后在你的执行函数中,你可以使用这样的东西:($this-> fs是Symfony2 Filesystem component的一个实例)

// execute()
// Write the file
$filePath = $this->parameters['base_path']. '/'. $this->fileName;
$this->fs->dumpFile($filePath, $myContent);
点赞