I have a very strange problem, when I try to var_dump (or print_r) a PHPDoctrine Object, my Apache responses with an empty blank page (200 OK header). I can var_dump a normal php var like:

$dummy = array("a" => 1, "b" =>2);

And it works fine. But I can't with any object from any Doctrine class, (like a result from $connection->query(), or an instance of a class from my object model with Doctrine).

Anybody knows why this happens?

Thanks and sorry for my bad english =) !

link|improve this question
feedback

7 Answers

up vote 5 down vote accepted

I've had that sometimes when trying to print_r() a self-referencing object - it gets into a loop and runs out of memory. Possibly that's what's happening to you.

Try increasing the memory limit (ini_set('memory_limit', '256M');) and see if that fixes it.

Edit: I don't think there's an actual fix for this - it's PHP's internal var_dump / print_r that don't limit depth on recursion (or don't do it properly, at least). If you install the XDebug extension, this can replace the built-in var_dump with a version that handles recursion much better.

link|improve this answer
feedback

Lazy load proxies always contain an instance of Doctrine’s EntityManager and all its dependencies. Therefore a var_dump will possibly dump a very large recursive structure which is impossible to render and read. You have to use Doctrine\Common\Util\Debug::dump() to restrict the dumping to a human readable level.

link|improve this answer
feedback

Use the toArray method of the Doctrine_Record class

var_dump($doctrine_record->toArray());

will only display the DB fields and avoid dumping the complete Doctrine internals (which contains self reference/recursion btw)

link|improve this answer
feedback

@RoBorg

With memory limit set to 256M, my localhost kepts loading a few minutes and after that returns a empty page (200 OK header). Then, I think the problem could be memory as you suggest, but I can't understand why Apache is not returning a memory error. I have only 512 MB so I can't try with much more...

Thanks btw.

PD: My php.ini is set to show all errors.

link|improve this answer
feedback

Thanks! I'll try XDebug =) (Zend Debugger in Zend Studio is too heavy for me!)

link|improve this answer
feedback

I never had problems since print_r recognizes recursion since PHP 4.0.4 and var_dump has a recoursion limit.

You never should use print_r/var_dump/var_export in a ob_start callback, since they use ob_* themselves. So where do you use this functions?

link|improve this answer
feedback

You can use toArray if you are sure the object is an instance of Doctrine_Collection. Xdebug does not help with doctrine records.

The way I suggest is implementing a custom recursive function to print object, that use Doctrine_Record::toArray() when neeeded

function var_dump_improved()
{
   foreach (func_get_args() as $arg) {
       if ($args instanceof Doctrine_Collection) {
          print_r($arg);
       } else if ( $arg instanceof Traversable || is_array($arg) ) {
          // do a foreach and recall var_dump_improved on subelements
       } else if (...) {
          // other types
       } 
   }   
}

Some recursive function to debug with max nesting levels are here

http://php.net/manual/en/function.var-dump.php

Look at the comments, look for "recursion"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown