芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/test/Var_Dump/toString-array.phpt
--TEST-- toString() : array. --FILE-- 'Text')); $linkedArray = array(TRUE, 123, 123.45); $array = array( 'key1' => 'The quick brown' . "\n" . 'fox jumped over' . "\n" . 'the lazy dog', 'key2' => & $linkedArray, 'key3' => NULL ); echo $vd->toString($array); ?> --EXPECT-- array(3) { key1 => string(44) The quick brown fox jumped over the lazy dog key2 => &array(3) { 0 => bool true 1 => int 123 2 => float 123.45 } key3 => NULL }