Skip to content

Instantly share code, notes, and snippets.

@binaryfunt
Created October 18, 2016 22:49
Show Gist options
  • Save binaryfunt/d7bbe02a29a8ed375fce9957bef8cc1b to your computer and use it in GitHub Desktop.
Save binaryfunt/d7bbe02a29a8ed375fce9957bef8cc1b to your computer and use it in GitHub Desktop.
var_dump() but actually readable. Thanks to edwardyzang http://php.net/manual/en/function.var-dump.php#51119
function var_dump_pre($mixed = null) {
echo "<pre>";
var_dump($mixed);
echo "</pre>";
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment