diff options
Diffstat (limited to 'ext/standard/tests/strings/bug65230.phpt')
-rw-r--r-- | ext/standard/tests/strings/bug65230.phpt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/standard/tests/strings/bug65230.phpt b/ext/standard/tests/strings/bug65230.phpt index 4363462934..1efcc6cf2e 100644 --- a/ext/standard/tests/strings/bug65230.phpt +++ b/ext/standard/tests/strings/bug65230.phpt @@ -13,16 +13,16 @@ date.timezone=Europe/Berlin function test($locale, $value) { - $newlocale = setlocale(LC_ALL, $locale); - $conv = localeconv(); - $sep = $conv['decimal_point']; + $newlocale = setlocale(LC_ALL, $locale); + $conv = localeconv(); + $sep = $conv['decimal_point']; - printf("%s\n--------------------------\n", $newlocale); - printf(" sep: %s\n", $sep); - printf(" %%f: %f\n", $value); - printf(" %%F: %F\n", $value); - printf("date: %s\n", strftime('%x', mktime(0, 0, 0, 12, 5, 2014))); - printf("\n"); + printf("%s\n--------------------------\n", $newlocale); + printf(" sep: %s\n", $sep); + printf(" %%f: %f\n", $value); + printf(" %%F: %F\n", $value); + printf("date: %s\n", strftime('%x', mktime(0, 0, 0, 12, 5, 2014))); + printf("\n"); } test('german', 3.41); |