Return to Snippet

Revision: 23690
at February 11, 2010 10:09 by joshuamilford


Initial Code
function gimme($array){
	echo '
	<pre>';
		print_r($array);
	echo '
	</pre>';
}

Initial URL


Initial Description
I include this in anything I'm developing, so I can easily inspect the contents of arrays and objects.

Initial Title
Gimme - display contents of an array or object

Initial Tags
php, object, array

Initial Language
PHP