TYPO3 <3 Symfony: dump() + dd()
This is just a short "Did you know?": If the TYPO3 admin panel is installed (in TYPO3 version 10 and above), you automatically get Symfony's dump()
und dd()
(dump and die) global methods as an alternative to DebuggerUtility::var_dump()
. I like dump
for quick looks at things because it's fast and has an integrated search. For bigger problems, I'd still use xdebug
of course ;)
Or more precisely, you'll automatically get the Symfony VarDumper
Component and all it entails as it is a direct dependency of the admin panel.
Find out more at https://symfony.com/doc/current/components/var_dumper.html