芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/test/Var_Dump/text-compact_mode.phpt
--TEST-- Text renderer : Compact mode. --FILE-- 'John', 11 => 'Jack', 127 => 'Bill'); $array = array( 'key-1' => 'The quick brown fox jumped over the lazy dog', 'key-2' => array( 'long-key' => & $linkedArray, 'file' => NULL ), 'long-key-3' => 234, ); Var_Dump::displayInit( array('display_mode' => 'Text'), array('mode' => 'compact') ); Var_Dump::display($array); ?> --EXPECT-- array(3) { key-1 => string(44) The quick brown fox jumped over the lazy dog key-2 => array(2) { long-key => &array(3) { 0 => string(4) John 11 => string(4) Jack 127 => string(4) Bill } file => NULL } long-key-3 => int 234 }