Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
--TEST--
2
toString() : float.
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(12.345678) . "\n" .
12
    $vd->toString(-12.345678) . "\n" .
13
    $vd->toString(2147483648) . "\n" .
14
    $vd->toString(-2147483648);
15
 
16
?>
17
--EXPECT--
18
float 12.345678
19
float -12.345678
20
float 2147483648
21
float -2147483648