Answers for "twig log variable"

PHP
0

twig log variable

// if you can install Symfony modules then install "symfony/var-dumper" then
{{ dump(varname) }}

// if you can't install anything you can go generic with
{{ varname | json_encode(constant('JSON_PRETTY_PRINT')) }}
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language