有人可以建议如何从树枝模板访问类静态属性吗?
可以说我有
class Foo {
const KEY_1 = 1;
const KEY_2 = 2;
const VAL_1 = 'HELLO 1';
const VAL_2 = 'HELLO 2';
public static $bar = array(
self::KEY_1 => self::VAL_1,
self::KEY_2 => self::VAL_2,
);
}
然后我将这个类转移到模板中
$template->render(array('Foo' => new Foo() ))
现在,我如何从树枝模板访问静态属性,例如
{{ Foo.bar.constant('Foo::KEY_1') }}
像这样或任何其他方式……在我看来,我尝试了所有可能的方式:(