Skip to content

Instantly share code, notes, and snippets.

@Toxiapo
Forked from pgmccann/do_var_dump.php
Created October 6, 2017 21:56
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 Toxiapo/babcedeb66ea7abefe3fab5cc3954586 to your computer and use it in GitHub Desktop.
Save Toxiapo/babcedeb66ea7abefe3fab5cc3954586 to your computer and use it in GitHub Desktop.
Formatted var_dump() for HTML output
<?php
function do_var_dump($object) {
echo "<pre>";
var_dump($object);
echo "</pre>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment