What construct should I use to check whether a value is NULL in a Twig template?

link|improve this question

feedback

3 Answers

up vote 37 down vote accepted

Depending on what exactly you need:

  • is null checks whether the value is null:

    {% if var is null %}
        {# do something #}
    {% endif %}
    
  • is defined checks whether the variable is defined:

    {% if var is not defined %}
        {# do something #}
    {% endif %}
    

Additionally the is sameas test, which does a type strict comparison of two values, might be of interest for checking values other than null (like false):

{% if var is sameas(false) %}
    {# do something %}
{% endif %}
link|improve this answer
This is now the correct answer for twig – Robert Martin Sep 11 '11 at 0:32
feedback

use default: http://twig.sensiolabs.org/doc/filters/default.html

{{ my_var | default("my_var doesn't exist" }}

or if you don't want it to display when null:

{{ my_var | default("") }}
link|improve this answer
So does it differentiate between undefined or empty and null? – Fluffy Oct 27 '11 at 8:26
1  
Seems like this is the correct way to check ... Shame it doesn't have many upvotes. – Mr-sk Feb 29 at 19:44
feedback

I don't think you can. This is because if a variable is undefined (not set) in the twig template, it looks like NULL or none (in twig terms). I'm pretty sure this is to suppress bad access errors from occurring in the template.

Due to the lack of a "identity" in Twig (===) this is the best you can do

{% if var == null %}
    stuff in here
{% endif %}

Which translates to:

if ((isset($context['somethingnull']) ? $context['somethingnull'] : null) == null)
{
  echo "stuff in here";
}

Which if your good at your type juggling, means that things such as 0, '', FALSE, NULL, and an undefined var will also make that statement true.

My suggest is to ask for the identity to be implemented into Twig.

link|improve this answer
2  
Kendall is right to suggest that they implement it - I've had nothing but good experiences asking for things to be implemented on Twig's github issue tracker. They're very friendly and professional. – Shabbyrobe Jul 17 '10 at 5:36
@kendall-hopkins Got curious, when is it appropriate to use {if var is none} and what is the PHP equivalent? – noisebleed Feb 7 at 16:19
@noisebleed {% if abcxyz is none %} becomes if (isset($context["abcxyz"])) { $_abcxyz_ = $context["abcxyz"]; } else { $_abcxyz_ = null; } if ((null === $_abcxyz_)) { echo "hi"; }. So basically if the value is undefined or null, it will be true. – Kendall Hopkins Feb 8 at 4:24
@noisebleed Also none is an alias for null ref. – Kendall Hopkins Feb 8 at 4:24
feedback

Your Answer

 
or
required, but never shown

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