Question

This is an example output:

class Framework\Configuration\Driver\Ini#3 (2) { protected $_parsed => array(0) { } private $_inspector => class Framework\Inspector#4 (4) { protected $_class => ... protected $_meta => array(3) { 'class' => array(0) { ... } 'properties' => array(0) { ... } 'methods' => array(0) { ... } } protected $_properties => array(0) { } protected $_methods => array(0) { } } }

For example there is protected $_class => ..

What does ... mean here?

Was it helpful?

Solution

Do you have xdebug installed?! It will limit max depth of var_dump to 3 level.

Read more here: http://www.xdebug.org/docs/display

You can change it by changing xdebug.var_display_max_depth variable.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top