This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/VarDumper
Nicolas Grekas f30ae9a9bb Merge branch '2.3' into 2.7
* 2.3:
  [ci] SymfonyTestsListener is now auto-registered
  adds validation messages missing italian translations
2015-10-11 11:39:48 +02:00
..
Caster fix class use and in phpdoc 2015-09-09 19:42:36 +02:00
Cloner fixes CS 2015-08-24 09:13:45 +02:00
Dumper bug #16183 [VarDumper] Fix wordwrap with Bootstrap (ogizanagi) 2015-10-10 19:33:17 +02:00
Exception Fix license headers 2015-09-26 14:15:17 +02:00
Resources/functions [DebugBundle] adjust after review 2014-09-23 16:25:59 +02:00
Test [VarDumper] Fix dump comparison on large arrays 2015-09-22 16:41:01 +02:00
Tests [tests] Use @requires annotation when possible 2015-10-10 11:00:45 +02:00
.gitignore [VarDumper] Ignore /vendor/ directory in git 2015-02-17 17:54:47 +01:00
CHANGELOG.md Revert "Added missing changelog entry" 2015-04-03 09:54:01 +02:00
composer.json Merge branch '2.3' into 2.7 2015-10-10 11:26:25 +02:00
LICENSE [Debug] fix test 2015-01-13 15:49:42 +01:00
phpunit.xml.dist Merge branch '2.3' into 2.7 2015-10-11 11:39:48 +02:00
README.md Fixed minor typo 2014-11-16 15:23:53 +00:00
VarDumper.php [VarDumper] inline dump() function loading 2014-11-06 21:49:33 +01:00

Symfony mechanism for exploring and dumping PHP variables

This component provides a mechanism that allows exploring then dumping any PHP variable.

It handles scalars, objects and resources properly, taking hard and soft references into account. More than being immune to infinite recursion problems, it allows dumping where references link to each other. It explores recursive structures using a breadth-first algorithm.

The component exposes all the parts involved in the different steps of cloning then dumping a PHP variable, while applying size limits and having specialized output formats and methods.