From: foobar Date: Wed, 21 Jan 2004 03:59:05 +0000 (+0000) Subject: MFH X-Git-Tag: php-4.3.5RC2~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27959e82ecdae8c3fb6082a56d01252001042e6a;p=php MFH --- diff --git a/ext/standard/tests/strings/bug26973.phpt b/ext/standard/tests/strings/bug26973.phpt index a25b526596..ef286e2c43 100644 --- a/ext/standard/tests/strings/bug26973.phpt +++ b/ext/standard/tests/strings/bug26973.phpt @@ -9,6 +9,13 @@ 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-- @@ -18,3 +25,10 @@ printf("%+05u\n", -200); -0200.000000 00200 4294967096 +--- +00200 +-0200 +00200.000000 +-0200.000000 +00200 +4294967096