Skip to content

Instantly share code, notes, and snippets.

@jasewarner
Last active May 11, 2017 10:21
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 jasewarner/624cff4ff91aa7cc2f1bc88906b5bfef to your computer and use it in GitHub Desktop.
Save jasewarner/624cff4ff91aa7cc2f1bc88906b5bfef to your computer and use it in GitHub Desktop.
Pretty printing in PHP
/**
* Pretty printing debugging tool.
*/
function pr( $var ) {
print '<pre>';
print_r( $var );
print '</pre>';
}
// Usage.
pr( $var );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment