Created
November 15, 2013 18:44
-
-
Save mindfullsilence/7489481 to your computer and use it in GitHub Desktop.
Print anything to the screen.
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
/** | |
* Echo Anything onto the page. | |
* | |
* @param mixed $msg | |
*/ | |
function debug($msg) | |
{ | |
echo '<pre style="background-color: saddlebrown; padding: 2em; margin: 2em; box-sizing: border-box;">'; | |
echo '<code style="font-family: Menlo; font-weight: bold; color: mintcream; font-size: 12px;">'; | |
echo '<br>'; | |
print_r($msg); | |
echo '<br>'; | |
echo '</code></pre>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment