bugger
bugger copied to clipboard
Add data dump
It would be useful to add var_dump() and print_r() alternative to dump variables content, name (to not write it manually) and, maybe, location where dump called. Something like:
<?php
$var = 'Test string';
dump($var);
script.php:3
$var string(11) "Test string"