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.
20 lines
464 B
20 lines
464 B
--TEST--
|
|
sprintf() %h and %H specifiers
|
|
--SKIPIF--
|
|
<?php
|
|
if (setlocale(LC_ALL, 'invalid') === 'invalid') { die('skip setlocale() is broken /w musl'); }
|
|
if (!setlocale(LC_ALL, "de_DE.utf8")) die("skip de_DE.utf8 locale not available");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
setlocale(LC_ALL, "de_DE.utf8");
|
|
$f = 1.25;
|
|
printf("%g %G %h %H\n", $f, $f, $f, $f);
|
|
$f = 0.00000125;
|
|
printf("%g %G %h %H\n", $f, $f, $f, $f);
|
|
|
|
?>
|
|
--EXPECT--
|
|
1,25 1,25 1.25 1.25
|
|
1,25e-6 1,25E-6 1.25e-6 1.25E-6
|
|
|