Symfony4

Twigテンプレートの基本

かなーりざっくりまとめ コメントアウト {# コメント内容 #} {# コメント 内容 #} 変数の宣言 {% set 変数 = 値 %} 変数のスコープ設定 変数の重複を防ぐ {% with %}{% endwith %} if文 {% if 条件 %} 処理 {% elseif 条件 %} 処理 {% else %} 処理 {% endif…

Symfony4 Twigテンプレートにレンダリング

コントローラからテンプレートへ renderメソッドを使用してtemplates/hello/index.html.twigにレンダリングする。 $this => render(テンプレート名, [テンプレートに渡す値の配列]); ex) public function index(Request $request) { return $this->render('h…