Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Twig では、2 つの方法でセットを行うことができます
{% set car = 'Honda' %}
また
{% set car %}Honda{%endset%}
2番目の方法は「キャプチャ」です
たとえば、変数を配列のインデックスとして使用しようとすると、
{{ cars[car].wheels | length }}
変数を設定する 2 番目の方法は機能しません。なんで?
次のように 2 番目の方法を使用することもできます (car 変数をトリムする必要があります)。
{% set car %}Honda{%endset%} {{ cars[car|trim].wheels | length }}