Skip to content

Instantly share code, notes, and snippets.

@kkemple
Created November 27, 2013 23:11
Show Gist options
  • Save kkemple/7684702 to your computer and use it in GitHub Desktop.
Save kkemple/7684702 to your computer and use it in GitHub Desktop.
this allows you to var dump anything with code styling then dies
function dd( $anything )
{
echo '<pre>';
var_dump( $anything );
echo '</pre>';
die(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment