How do you output an array with FirePHP?
I'm using FirePHP in a Zend Framework project. I can output the value of individual variables with:
$logger->log('foo = '.$foo, Zend_Log::INFO);
and see something like:
foo = "Ponies!"
However if $foo is an array I only see:
foo = Array
and the word Array
is not clickable or hoverable or anything.
I googled Google and my googling didn't return anything about how to output the values in an array with FirePHP. Any ideas?