php-src/Zend/tests/oct_overflow.phpt
2018-10-14 19:45:12 +02:00

30 lines
368 B
PHP

--TEST--
testing integer overflow (32bit)
--INI--
precision=14
--FILE--
<?php
$doubles = array(
076545676543223,
032325463734,
0777777,
07777777777777,
033333333333333,
);
foreach ($doubles as $d) {
$l = (double)$d;
var_dump($l);
}
echo "Done\n";
?>
--EXPECTF--
float(4308640384%d)
float(3545655%d)
float(262143)
float(549755813%d)
float(1884877076%d)
Done