11 lines
190 B
PHP
11 lines
190 B
PHP
--TEST--
|
|
GH-18897 (printf: empty precision is interpreted as precision 6, not as precision 0)
|
|
--FILE--
|
|
<?php
|
|
printf("%.f\n", 3.1415926535);
|
|
printf("%.0f\n", 3.1415926535);
|
|
?>
|
|
--EXPECT--
|
|
3
|
|
3
|