Created
October 9, 2012 08:52
-
-
Save de-raaf-media/3857473 to your computer and use it in GitHub Desktop.
print_m - formatted print_r
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
<?php | |
function print_m($s) { | |
echo '<pre>'; | |
print_r($s); | |
echo '</pre>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment