php-src/ext/standard/tests/strings/bug26973.phpt
Ilia Alshanetsky 0a38683b14 Correct output.
2004-05-17 20:58:57 +00:00

35 lines
495 B
PHP

--TEST--
Bug #26973 (*printf() '+' modifier problem)
--FILE--
<?php
printf("%+05d\n", 200);
printf("%+05d\n", -200);
printf("%+05f\n", 200);
printf("%+05f\n", -200);
printf("%+05u\n", 200);
printf("%+05u\n", -200);
echo "---\n";
printf("%05d\n", 200);
printf("%05d\n", -200);
printf("%05f\n", 200);
printf("%05f\n", -200);
printf("%05u\n", 200);
printf("%05u\n", -200);
?>
--EXPECT--
+0200
-0200
+200.000000
-200.000000
00200
4294967096
---
00200
-0200
200.000000
-200.000000
00200
4294967096