Twig

Twigでコメントアウトしたい

Twigでコメントアウトしたくなったけど、わからなかったので調べた。 でもいつものリファレンスで見当たらない。 https://twig.symfony.com/doc/1.x/ Twig for Template Designersとかいうところにあった。 https://twig.symfony.com/doc/1.x/templates.html…

Twigで配列の一部を取り出す

Twigで配列の一部を取り出すときは、sliceを使えばオケ。 でも配列のキーがつぶれた。 マニュアル見た。 https://twig.symfony.com/doc/2.x/filters/slice.html The slice filter works as the array_slice PHP function for arrays and mb_substr for strin…

TwigでPHPの===

てきとうにif文書いたら、空でもゼロでも通ってしまった。 {% if value == '0' %} 何も考えずに==を===してみたら、シンタックスエラーになった。 ちゃんと調べた。 https://twig.symfony.com/doc/1.x/tests/sameas.html This is the equivalent to === in P…

TwigでPHPのin_array

PHPのin_arrayは if (in_array($val, $array)) Twigでこんな感じ。 if val in array https://twig.symfony.com/doc/1.x/templates.html#containment-operator