Debug.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the MIT license. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\Common\Util;
  20. use Doctrine\Common\Persistence\Proxy;
  21. /**
  22. * Static class containing most used debug methods.
  23. *
  24. * @link www.doctrine-project.org
  25. * @since 2.0
  26. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  27. * @author Jonathan Wage <jonwage@gmail.com>
  28. * @author Roman Borschel <roman@code-factory.org>
  29. * @author Giorgio Sironi <piccoloprincipeazzurro@gmail.com>
  30. */
  31. final class Debug
  32. {
  33. /**
  34. * Private constructor (prevents instantiation).
  35. */
  36. private function __construct()
  37. {
  38. }
  39. /**
  40. * Prints a dump of the public, protected and private properties of $var.
  41. *
  42. * @link http://xdebug.org/
  43. *
  44. * @param mixed $var The variable to dump.
  45. * @param integer $maxDepth The maximum nesting level for object properties.
  46. * @param boolean $stripTags Whether output should strip HTML tags.
  47. */
  48. public static function dump($var, $maxDepth = 2, $stripTags = true)
  49. {
  50. $html = ini_get('html_errors');
  51. if ($html !== true) {
  52. ini_set('html_errors', true);
  53. }
  54. if (extension_loaded('xdebug')) {
  55. ini_set('xdebug.var_display_max_depth', $maxDepth);
  56. }
  57. $var = self::export($var, $maxDepth++);
  58. ob_start();
  59. var_dump($var);
  60. $dump = ob_get_contents();
  61. ob_end_clean();
  62. echo ($stripTags ? strip_tags(html_entity_decode($dump)) : $dump);
  63. ini_set('html_errors', $html);
  64. }
  65. /**
  66. * @param mixed $var
  67. * @param int $maxDepth
  68. *
  69. * @return mixed
  70. */
  71. public static function export($var, $maxDepth)
  72. {
  73. $return = null;
  74. $isObj = is_object($var);
  75. if ($isObj && in_array('Doctrine\Common\Collections\Collection', class_implements($var))) {
  76. $var = $var->toArray();
  77. }
  78. if ($maxDepth) {
  79. if (is_array($var)) {
  80. $return = array();
  81. foreach ($var as $k => $v) {
  82. $return[$k] = self::export($v, $maxDepth - 1);
  83. }
  84. } else if ($isObj) {
  85. $return = new \stdclass();
  86. if ($var instanceof \DateTime) {
  87. $return->__CLASS__ = "DateTime";
  88. $return->date = $var->format('c');
  89. $return->timezone = $var->getTimeZone()->getName();
  90. } else {
  91. $reflClass = ClassUtils::newReflectionObject($var);
  92. $return->__CLASS__ = ClassUtils::getClass($var);
  93. if ($var instanceof Proxy) {
  94. $return->__IS_PROXY__ = true;
  95. $return->__PROXY_INITIALIZED__ = $var->__isInitialized();
  96. }
  97. if ($var instanceof \ArrayObject || $var instanceof \ArrayIterator) {
  98. $return->__STORAGE__ = self::export($var->getArrayCopy(), $maxDepth - 1);
  99. }
  100. foreach ($reflClass->getProperties() as $reflProperty) {
  101. $name = $reflProperty->getName();
  102. $reflProperty->setAccessible(true);
  103. $return->$name = self::export($reflProperty->getValue($var), $maxDepth - 1);
  104. }
  105. }
  106. } else {
  107. $return = $var;
  108. }
  109. } else {
  110. $return = is_object($var) ? get_class($var)
  111. : (is_array($var) ? 'Array(' . count($var) . ')' : $var);
  112. }
  113. return $return;
  114. }
  115. /**
  116. * Returns a string representation of an object.
  117. *
  118. * @param object $obj
  119. *
  120. * @return string
  121. */
  122. public static function toString($obj)
  123. {
  124. return method_exists($obj, '__toString') ? (string) $obj : get_class($obj) . '@' . spl_object_hash($obj);
  125. }
  126. }