Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > media > main-release > by-pkgid > e6e98406e2154f3c4d65f1552fa813fe > files > 31

php-pear-Var_Dump-1.0.3-5mdv2010.0.noarch.rpm

--TEST--
toString() : int.
--FILE--
<?php

error_reporting(E_ALL);
require_once 'Var_Dump.php';
$vd = new Var_Dump(array('display_mode' => 'Text'));

echo
    $vd->toString(-2147483647) . "\n" .
    $vd->toString(0) . "\n" .
    $vd->toString(2147483647);

?>
--EXPECT--
int -2147483647
int 0
int 2147483647