Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
--TEST--
2
Renderer : XHTML_Table.
3
--FILE--
4
<?php
5
 
6
error_reporting(E_ALL);
7
require_once 'Var_Dump.php';
8
 
9
$linkedArray = array(TRUE, 123, 123.45);
10
$array = array(
11
    'key1' => 'The quick brown' . "\n" . 'fox jumped over' . "\n" . 'the lazy dog',
12
    'key2' => & $linkedArray,
13
    'key3' => NULL
14
);
15
 
16
Var_Dump::displayInit(array('display_mode' => 'XHTML_Table'));
17
Var_Dump::display($array);
18
 
19
?>
20
--EXPECT--
21
<table class="var_dump"><caption>array(3)</caption><tr><th>key1</th><td><i>string(44)</i></td><td>The quick brown<br />
22
fox jumped over<br />
23
the lazy dog</td></tr><tr class="alt"><th>key2</th><td colspan="2"><table class="var_dump"><caption>&amp;array(3)</caption><tr><th>0</th><td><i>bool</i></td><td>true</td></tr><tr class="alt"><th>1</th><td><i>int</i></td><td>123</td></tr><tr><th>2</th><td><i>float</i></td><td>123.45</td></tr></table></td></tr><tr><th>key3</th><td colspan="2"><i>NULL</i></td></tr></table>