VarDumper.php 706 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * @author Qiang Xue <[email protected]>
  4. * @link http://www.yiiframework.com/
  5. * @copyright Copyright &copy; 2008-2011 Yii Software LLC
  6. * @license http://www.yiiframework.com/license/
  7. */
  8. namespace yii\helpers;
  9. /**
  10. * VarDumper is intended to replace the buggy PHP function var_dump and print_r.
  11. * It can correctly identify the recursively referenced objects in a complex
  12. * object structure. It also has a recursive depth control to avoid indefinite
  13. * recursive display of some peculiar variables.
  14. *
  15. * VarDumper can be used as follows,
  16. *
  17. * ~~~
  18. * VarDumper::dump($var);
  19. * ~~~
  20. *
  21. * @author Qiang Xue <[email protected]>
  22. * @since 2.0
  23. */
  24. class VarDumper extends BaseVarDumper
  25. {
  26. }