Symfony 4: Var-dumper not working properly

青春壹個敷衍的年華 提交于 2019-11-29 22:04:52

问题


I tried to use the wonderful dump function from the var-dumper bundle in symfony 4 and for some reason I get the following error:

Failed to start the session because headers have already been sent by "vendor\symfony\var-dumper\Dumper\AbstractDumper.php" at line 181.

Additionally, when I try to use the {% dump foo %} tag in a twig template I get an error:

Unknown "dump" tag.

Can anyone help me?


回答1:


A guy named Simon Waldburger mentioned in the lesson's comments that installing "debug" fixed the issue (it fixed it for me). The instruction was in the next lesson.

composer require debug --dev

iiirxs is also correct, to output dump in twig file, do

{{ dump(variable) }}


来源:https://stackoverflow.com/questions/48304155/symfony-4-var-dumper-not-working-properly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!