How to access class constants in Twig?

后端 未结 7 1034
醉梦人生
醉梦人生 2020-12-12 15:49

I have a few class constants in my entity class, e.g.:

class Entity {
    const TYPE_PERSON = 0;
    const TYPE_COMPANY = 1;
}

In normal PH

相关标签:
7条回答
  • 2020-12-12 16:45

    Just to save your time. If you need to access class constants under namespace, use

    {{ constant('Acme\\DemoBundle\\Entity\\Demo::MY_CONSTANT') }}
    
    0 讨论(0)
提交回复
热议问题