LoginSignup
1
0

More than 5 years have passed since last update.

twig で {% if hoge is defined and hoge is not empty %} ってやるのめんどくさい

Last updated at Posted at 2017-05-16
{% if hoge|default('') is not empty %}{{ hoge }}{% endif %}
{% if hoge|default('') != ''}{{ hoge }}{% endif %}
{% if hoge|default('') %}{{ hoge }}{% endif %}
{{ hoge|default('') }}
{{ hoge|default }}

※ちなみに DateTimeとかに対してうっかり|default すると現在時刻が入ってしまうので注意だ

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0