我正在尝试将 DIR 作为参数传递给我的配置
file_locator:
class: Symfony\Component\Config\FileLocator
arguments: [__DIR__ . '/app/config']
但看起来这不起作用,是否有可能不在论证中指出完整路径?
答案 0 :(得分:5)
不,你不能在yaml文件中使用php。如果您想要绝对路径,则应使用kernel.root_dir
参数。该参数包含带有AppKernel
的目录的路径:
file_locator:
class: Symfony\Component\Config\FileLocator
arguments: ['%kernel.root_dir%/app/config']