Dump with <pre> shortcut

<?php /** * Automatically adds the PRE tags around the var_dump output so you get nice formatted arrays * */ function var_dump_pre($mixed = null) { echo '<pre>'; var_dump($mixed); echo '</pre>'; return null; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.