Skip to content

Instantly share code, notes, and snippets.

@mindfullsilence
Created November 15, 2013 18:44
Show Gist options
  • Save mindfullsilence/7489481 to your computer and use it in GitHub Desktop.
Save mindfullsilence/7489481 to your computer and use it in GitHub Desktop.
Print anything to the screen.
/**
* 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