msgbartop
programming, reviews, code, culture, civilization, media, php, python, and more
msgbarbottom

 
msgbartop
msgbarbottom

11 Nov 08 Formatted print_r is Darn useful

Here is one of the little improvements upon a php script that makes it even more useful - at least appropriate for browser output. I make no claim to having invented this, its just a useful little script to pass on for debugging arrays in PHP.

function printR($arr, $label= null) {
if($label){
echo “<h2>$label</h2> \n “;
}
echo “\n\n<pre>\n”;
print_r($arr);
echo “\n</pre>\n\n”;
}

Tags: , , , ,


 
msgbartop
msgbarbottom

SuperWebDeveloper.com is Digg proof thanks to caching by WP Super Cache!