Last active
September 30, 2018 18:38
-
-
Save 8ctopotamus/f67305cd532eedaa4c224377a5af6aa8 to your computer and use it in GitHub Desktop.
var_dump() looks like s***. Make it readable for humans.
This file contains hidden or 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 var_awesome($value) { | |
| echo '<pre>'; | |
| var_export($value); | |
| echo '</pre>'; | |
| } | |
| // useage | |
| $example_arr = array('testing', 1, 2, 3); | |
| var_awesome($example_arr); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment