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.
 
 

14 lines
257 B

--TEST--
number_format should use default values when passed null
--FILE--
<?php
$number = 2020.1415;
var_dump(number_format($number, 2, null, 'T'));
var_dump(number_format($number, 2, 'F', null));
?>
--EXPECT--
string(8) "2T020.14"
string(8) "2,020F14"