Skip to content

Instantly share code, notes, and snippets.

@pralhadstha
Forked from justinhernandez/gist:630770
Created September 25, 2015 06:34
Show Gist options
  • Save pralhadstha/c60d0523c0e0ad5d26f5 to your computer and use it in GitHub Desktop.
Save pralhadstha/c60d0523c0e0ad5d26f5 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