Skip to content

Instantly share code, notes, and snippets.

@whisperity
Created July 24, 2012 16:05
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 whisperity/3170886 to your computer and use it in GitHub Desktop.
Save whisperity/3170886 to your computer and use it in GitHub Desktop.
Output PHP variables in a prettier format for human-readable dumping
function prettyVar($variable = NULL)
{
return str_replace(array("\n"," "),array("<br>","&nbsp;"), var_export($variable,true))."<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment