Hi!
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 =) !