Created
October 17, 2010 11:39
-
-
Save justinhernandez/630770 to your computer and use it in GitHub Desktop.
pretty array export for var_export
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 pretty_var($myArray){ | |
print str_replace(array("\n"," "),array("<br>"," "), var_export($myArray,true))."<br>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment