Skip to content

Instantly share code, notes, and snippets.

@yoanmarchal
Created June 27, 2013 12:47
Show Gist options
  • Save yoanmarchal/5876126 to your computer and use it in GitHub Desktop.
Save yoanmarchal/5876126 to your computer and use it in GitHub Desktop.
Pretty print - PHP
function pretty_print($arg) {
echo '<pre>';
print_r($arg);
echo '</pre>';
}
/* using pretty print */
$var = $_SERVER;
pretty_print($var);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment