php-src/ext/standard/tests/strings/bug26973.phpt

35 lines
495 B
Plaintext
Raw Normal View History

2004-01-21 03:49:15 +00:00
--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);
2004-01-21 03:58:30 +00:00
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);
2004-01-21 03:49:15 +00:00
?>
--EXPECT--
+0200
-0200
2004-05-17 20:58:57 +00:00
+200.000000
-200.000000
2004-01-21 03:49:15 +00:00
00200
4294967096
2004-01-21 03:58:30 +00:00
---
00200
-0200
2004-05-17 20:58:57 +00:00
200.000000
-200.000000
2004-01-21 03:58:30 +00:00
00200
4294967096