mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
f9f69a5373
some 64bit test files may need to be fixed
15 lines
225 B
PHP
15 lines
225 B
PHP
--TEST--
|
|
Bug #43053 (Regression: some numbers shown in scientific notation)
|
|
--FILE--
|
|
<?php
|
|
echo 1200000.00."\n";
|
|
echo 1300000.00."\n";
|
|
echo 1400000.00."\n";
|
|
echo 1500000.00."\n";
|
|
?>
|
|
--EXPECT--
|
|
1200000
|
|
1300000
|
|
1400000
|
|
1500000
|