Skip to content

Instantly share code, notes, and snippets.

@davebarnwell
Last active August 10, 2017 12:39
Show Gist options
  • Save davebarnwell/797f9f71547844fba23a973e9c76d5f3 to your computer and use it in GitHub Desktop.
Save davebarnwell/797f9f71547844fba23a973e9c76d5f3 to your computer and use it in GitHub Desktop.
PHP dump args in pre tag and die
<?php
/**
* dump args surrounded in html pre block and die
*
* @param mixed $args,... variable number of arguments
*/
function dd() {
echo '<pre>';
call_user_func_array('var_dump',func_get_args());
echo '</pre>';
die;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment