Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the previous question, I asked for an alternative implementation of var_dump that allowed limiting the output of the depth of nested arrays.

Abhishek answered the question. But that function works only on nested arrays. It does't work on object graphs.

How can a var_dump implementation work on object graphs and limit the output of the depth of nested objects?

share|improve this question

3 Answers

By far the easiest solution is to install the xdebug extension (which is a good idea anyway). It overrides var_dump with a version which limits output to a configurable depth.

share|improve this answer
I just noticed you already mentioned xdebug in your other question. I'd suggest you try to fix whatever isn't working for you about it, instead of trying to find some entirely alternative solution. – deceze Nov 15 '12 at 12:49
I am already trying to fix it but I thought maybe an alternative implementation might solve the problem faster. Let's see... – Mert Nuhoglu Nov 15 '12 at 12:57

Check out some of the comments under the var_dump function info at php.net - http://php.net/manual/en/function.var-dump.php - They provide depth level controls for var_dump as well as few other goodies.

share|improve this answer

try dump_r.php (php 5.3+).

you can specify the depth to which you want the dump unfolded to and can interactively unfold more later. It will not actually limit the depth of the actual dump though, so if it's needed for performance reasons, it likely won't help in that department. Also, it's in HTML, I will probably add a text-only dump option in the future.

demo: http://o-0.me/dump_r/
repo: https://github.com/leeoniya/dump_r.php

also installable via Composer
require: "leeoniya/dump-r": "dev-master"
https://packagist.org/packages/leeoniya/dump-r

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.