Skip to content

Instantly share code, notes, and snippets.

@aMoniker
Last active August 29, 2015 14:01
Show Gist options
  • Save aMoniker/c2029b087ef90729ac62 to your computer and use it in GitHub Desktop.
Save aMoniker/c2029b087ef90729ac62 to your computer and use it in GitHub Desktop.
Useful PHP Debug Functions
function pre_dump(/* whatever you like */) {
echo '<pre>';
call_user_func_array('var_dump', func_get_args());
echo '</pre>';
}
function die_dump(/* etc */) {
call_user_func_array('pre_dump', func_get_args());
die();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment