目次

04 twig 変数

代入

{% set val1 = "AAA" %}

変数連結

{% set val2 = "BBB" %}

{{ val1.val2 }}

文字列の中に変数を使う

{% set val2 = "てすと#{val1}" %}