Skip to content

Instantly share code, notes, and snippets.

@webdevilopers
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdevilopers/b1b53daa74c0575bbde7 to your computer and use it in GitHub Desktop.
Save webdevilopers/b1b53daa74c0575bbde7 to your computer and use it in GitHub Desktop.
Doctrine Debug dump usage instead of var_dump
<?php
/**
* 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.
* Additionally you should be aware that dumping the EntityManager to a Browser may take several minutes,
* and the Debug::dump() method just ignores any occurrences of it in Proxy instances.
*/
#var_dump($entity); // will possibly dump a very large recursive structure which is impossible to render and read
Doctrine\Common\Util\Debug::dump($entity); // restrict the dumping to a human readable level
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment