Arrays

Get a full recursive dump of arrays with each value highlighted according to its type. Mixing objects and arrays is supported. Maximum recursion depth is set to 10 by default. Arrays can be folded by clicking on the Array-Label. Clicking on the closing bracket will highlight the opening bracket.

visit HLI#X
1. pre($array) type: array
in builder\plugins\arrayDump.php on line 19
− Array ( 0 => 'STRING', 1 => 1.2, 2 => − Array ( 'key' => 'intern', 0     => 3 ) )
*** global scope ***
visit HLI#X
2. pre(array_reverse($array)) type: array
in builder\plugins\arrayDump.php on line 20
− Array ( 0 => − Array ( 'key' => 'intern', 0     => 3 ), 1 => 1.2, 2 => 'STRING' )
*** global scope ***

Using this command you can force the array to be displayed folded, and you can reduce the depth to which dump will run recursively:

hli('startWithHiddenBlocks',true); hli('maxDumpLevel',3);
visit HLI#X
3. pre(array('hier',array('dort','so[…]) type: array
in builder\plugins\arrayDump.php on line 31
− Array ( 0 => 'hier', 1 => + Array ( ) )
*** global scope ***
visit HLI#X
4. pre(array('hier',array('d),\'),ort\\'))) type: array
− Array ( 0 => 'hier', 1 => + Array ( ) )
HLI