Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

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

In normal PHP I often do if($var == Entity::TYPE_PERSON) and I would like to do this kind of stuff in Twig. Is it possible?

share|improve this question

2 Answers

up vote 31 down vote accepted
{% if var == constant('Entity::TYPE_PERSON') %}
{# or #}
{% if var is constant('Entity::TYPE_PERSON') %}

See documentation for the constant function and the constant test.

share|improve this answer

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

{{ constant('Acme\\DemoBundle\\Entity\\Demo::MY_CONSTANT') }}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.