Created
July 24, 2012 16:05
-
-
Save whisperity/3170886 to your computer and use it in GitHub Desktop.
Output PHP variables in a prettier format for human-readable dumping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function prettyVar($variable = NULL) | |
{ | |
return str_replace(array("\n"," "),array("<br>"," "), var_export($variable,true))."<br>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment