From: foobar Date: Wed, 21 Jan 2004 03:58:30 +0000 (+0000) Subject: extend a bit X-Git-Tag: php_ibase_before_split~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f56bc3b8d81f27ed8d7fb9926372060b61e16ff;p=php extend a bit --- 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