TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
548 B

--TEST--
GH-14140: Floating point bug in range operation on Apple Silicon hardware
--SKIPIF--
<?php die("skip AOT float formatting for print_r differs from PHP"); ?>
--FILE--
<?php
ini_set('serialize_precision', '14');
/*
* This is a problem that occurs not only in Apple silicon, but also in the Arm
* processor environment in general, which uses clang as the compiler.
*/
print_r(range(-0.03, 0.03, 0.01));
?>
--EXPECT--
Array
(
[0] => -0.03
[1] => -0.02
[2] => -0.01
[3] => 0
[4] => 0.01
[5] => 0.02
[6] => 0.03
)