Skip to content

Instantly share code, notes, and snippets.

@wallacemaxters
Created November 6, 2015 12:40
Show Gist options
  • Save wallacemaxters/317b72a6c9a3e2593dcc to your computer and use it in GitHub Desktop.
Save wallacemaxters/317b72a6c9a3e2593dcc to your computer and use it in GitHub Desktop.
<?php
function debug() {
while(ob_get_length() > 0) {
ob_end_clean();
}
echo '<pre style="color:#800">';
foreach (func_get_args() as $mixed) {
if (is_scalar($mixed) || is_resource($mixed)) {
var_dump($mixed);
} else {
print_r($mixed);
}
}
echo '</pre>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment