Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--Renderer : HTML4_Text.--FILE--<?phperror_reporting(E_ALL);require_once 'Var_Dump.php';$linkedArray = array(TRUE, 123, 123.45);$array = array('key1' => 'The quick brown' . "\n" . 'fox jumped over' . "\n" . 'the lazy dog','key2' => & $linkedArray,'key3' => NULL);Var_Dump::displayInit(array('display_mode' => 'HTML4_Text'));Var_Dump::display($array);?>--EXPECT--<pre>array(3) {key1 => <font color="#006600">string(44)</font> <font color="#339900">The quick brown</font> <font color="#339900">fox jumped over</font> <font color="#339900">the lazy dog</font>key2 => &array(3) {0 => <font color="#006600">bool</font> <font color="#339900">true</font>1 => <font color="#006600">int</font> <font color="#339900">123</font>2 => <font color="#006600">float</font> <font color="#339900">123.45</font>}key3 => <font color="#006600">NULL</font>}</pre>