Skip to content

Instantly share code, notes, and snippets.

@djave-co
Last active December 22, 2015 03:49
Show Gist options
  • Save djave-co/6413289 to your computer and use it in GitHub Desktop.
Save djave-co/6413289 to your computer and use it in GitHub Desktop.
// Prints an array or objects in PHP
// print($object);
function print_a( $a ) {
print( '<pre>' );
print_r( $a );
print( '</pre>' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment