Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
--TEST--
2
toString() : bool.
3
--FILE--
4
<?php
5
 
6
error_reporting(E_ALL);
7
require_once 'Var_Dump.php';
8
$vd = new Var_Dump(array('display_mode' => 'Text'));
9
 
10
echo
11
    $vd->toString(FALSE) . "\n" .
12
    $vd->toString(TRUE);
13
 
14
?>
15
--EXPECT--
16
bool false
17
bool true