参见英文答案 >
Symfony2 Use PHP Class Constant in YAML Config?6个
使用配置文件定义服务时,如何将PHP常量(本例中为CURLAUTH_DIGEST)作为构造函数参数传递?
原文链接:https://www.f2er.com/php/135259.html使用配置文件定义服务时,如何将PHP常量(本例中为CURLAUTH_DIGEST)作为构造函数参数传递?
我现在无法测试它,但我认为:
services: my_service: class: "%my_service.class%" arguments: [CURLAUTH_DIGEST]
因为CURLAUTH_DIGEST被转换为字符串而无法工作.