変数をデバッグする方法

  • Controllerなどで変数を出力したい場合
$hoge = ["test" => "hogehoge"];
dump($hoge);
  • Twig で変数を出力したい場合
{{dump(hoge)}}