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.
16 lines
368 B
16 lines
368 B
--TEST--
|
|
Bug #47168 (printf of floating point variable prints maximum of 40 decimal places)
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip Test output differs under AOT compilation';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$dyadic = 0.00000000000045474735088646411895751953125;
|
|
var_dump(printf ("%1.41f\n",unserialize(serialize($dyadic))));
|
|
|
|
?>
|
|
--EXPECT--
|
|
0.00000000000045474735088646411895751953125
|
|
int(44)
|
|
|