Skip to content

Instantly share code, notes, and snippets.

@transphorm
Created October 17, 2010 11:39
Show Gist options
  • Save transphorm/630770 to your computer and use it in GitHub Desktop.
Save transphorm/630770 to your computer and use it in GitHub Desktop.
pretty array export for var_export
function pretty_var($myArray){
print str_replace(array("\n"," "),array("<br>","&nbsp;"), var_export($myArray,true))."<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment