Skip to content

Instantly share code, notes, and snippets.

@jordanandree
Created December 27, 2010 23:20
Show Gist options
  • Save jordanandree/756691 to your computer and use it in GitHub Desktop.
Save jordanandree/756691 to your computer and use it in GitHub Desktop.
dump an object
<?php
function dump( $str ){
echo '<pre>'.print_r($str, false).'</pre>';
exit();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment