Skip to content

Instantly share code, notes, and snippets.

@getanwar
Created January 14, 2014 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save getanwar/8415391 to your computer and use it in GitHub Desktop.
Save getanwar/8415391 to your computer and use it in GitHub Desktop.
PHP: function pretty-var_dump (pvd)
//custom function for showing var_dump() result decorated on browser
function pvd($var) {
echo "<pre style='font-size:16px;'>";
var_dump($var);
echo "</pre>";
}
//pvd($var); //call this instead of var_dump($var); don't forget to replace $var with your array
//custom function for showing var_dump() result decorated on browser
function pvd($var) {
echo "<pre style='font-size:16px;'>";
var_dump($var);
echo "</pre>";
}
//pvd($var); //call this instead of var_dump($var); don't forget to replace $var with your array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment