vote up 2 vote down star
1

I'm fixing some PHP scripts and I'm missing ruby's pretty printer. i.e.

require 'pp'
arr = {:one => 1}
pp arr

will output {:one => 1}. This even works with fairly complex objects and makes digging into an unknown script much easier. Is there some way to duplicate this functionality in PHP?

flag

6 Answers

vote up 9 vote down check

Both print_r() and var_dump() will output visual representations of objects within PHP.

$arr = array('one' => 1);
print_r($arr);
var_dump($arr);
link|flag
9  
If you install the XDebug extension, the var_dump becomes an even prettier printer. – Alan Storm Jul 22 at 20:56
1  
Thank you, turns out it's just an issue of naming! I say po ta to you say pa_ta_to. – Aaron Lee Jul 22 at 20:57
1  
To make it look even nicer in a browser use: echo "<pre>"; print_r($arr); echo "</pre>"; – Domenic Jul 22 at 23:30
1  
To Domenic's point just wrap it: function pr($array = null) { print "<pre><code>" . print_r($array) . "</code></pre>"; } – Darren Newton Jul 23 at 0:53
@darren_n: print_r() automatically outputs and doesn't return anything (unless its second parameter is true), so you can't concatenate to another string. Use the following instead: function pr($var) { print '<pre>'; print_r($var); print '</pre>'; } – Andrew Moore Jul 23 at 13:55
vote up 0 vote down

For PHP, you can easily take advantage of HTML and some simple recursive code to make a pretty representation of nested arrays and objects.

function pp($arr){
    $retStr = '<ul>';
    if (is_array($arr)){
        foreach ($arr as $key=>$val){
            if (is_array($val)){
                $retStr .= '<li>' . $key . ' => ' . pp($val) . '</li>';
            }else{
                $retStr .= '<li>' . $key . ' => ' . $val . '</li>';
            }
        }
    }
    $retStr .= '</ul>';
    return $retStr;
}

This will print the array as a list of nested HTML lists. HTML and your browser will take care of indenting and making it legible.

link|flag
vote up 0 vote down

If you're doing more debugging, Xdebug is essential. By default it overrides var_dump() with it's own version which displays a lot more information than PHP's default var_dump().

There's also Zend_Debug.

link|flag
Blarg. Xdebug's var dump sucks because it outputs HTML... Oh yeah, looks fantastic on a CLI test. – jason Jul 23 at 4:12
vote up 0 vote down
error_log(print_r($variable,true));

to send to syslog or eventlog for windows

link|flag
vote up 2 vote down

For simplicity, print_r() and var_dump() can't be beat. If you want something a little fancier or are dealing with large lists and/or deeply nested data, Krumo will make your life much easier - it provides you with a nicely formatted collapsing/expanding display.

link|flag
+1 for Krumo. A very nice tool! – Gary Willoughby Jul 22 at 22:27
vote up 3 vote down

How about print_r?

http://www.php.net/print_r

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.