Skip to content

Instantly share code, notes, and snippets.

@getanwar
Created January 14, 2014 09:11
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/8415415 to your computer and use it in GitHub Desktop.
Save getanwar/8415415 to your computer and use it in GitHub Desktop.
PHP: function pretty-print_r (ppr)
//custom function for showing print_r() result decorated on browser
function ppr($var) {
echo "<pre style='font-size:16px;'>";
print_r($var);
echo "</pre>";
}
//ppr($var); //call this instead of print_r($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