-
-
Save farik92/3dfbecfd936c7b90fa65c66288567097 to your computer and use it in GitHub Desktop.
A function to pretty print a associative array in PHP
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
| <?php | |
| function debug($var = false) { | |
| echo "\n<pre style=\"background: #FFFF99; font-size: 10px;\">\n"; | |
| $var = print_r($var, true); | |
| echo $var . "\n</pre>\n"; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment