-
Notifications
You must be signed in to change notification settings - Fork 8k
Make float to string conversions locale-independent #5224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,5 +25,5 @@ ut_run(); | |
|
|
||
| ?> | ||
| --EXPECT-- | ||
| 1234567,891 | ||
| 1234567.891 | ||
| de-de | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,5 +30,5 @@ ut_run(); | |
|
|
||
| ?> | ||
| --EXPECT-- | ||
| 1234567,891 | ||
| 1234567.891 | ||
| de_DE.UTF-8 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 107 additions & 0 deletions
107
ext/standard/tests/strings/locale_independent_float_to_string.phpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,107 @@ | ||
| --TEST-- | ||
| Test that floats are converted to string locale independently | ||
| --SKIPIF-- | ||
| <?php | ||
|
|
||
| if (!setlocale | ||
| (LC_ALL, | ||
| "german", "de", "de_DE", "de_DE.ISO8859-1", "de_DE.ISO_8859-1", "de_DE.UTF-8", | ||
| "french", "fr", "fr_FR", "fr_FR.ISO8859-1", "fr_FR.ISO_8859-1", "fr_FR.UTF-8", | ||
| )) { | ||
| die("skip - locale needed for this test is not supported on this platform"); | ||
| } | ||
|
|
||
| if (!extension_loaded("json")) { | ||
| print "skip - test requires the json extension"; | ||
| } | ||
|
|
||
| ?> | ||
| --FILE-- | ||
| <?php | ||
|
|
||
| function print_float(float $f) | ||
| { | ||
| echo "- casting:\n"; | ||
| echo $f . "\n"; | ||
| echo strval($f) . "\n"; | ||
| $g = $f; | ||
| settype($g, "string"); | ||
| echo $g . "\n"; | ||
|
|
||
| echo "- *printf functions:\n"; | ||
| printf("%.2f\n", $f); | ||
| printf("%.2F\n", $f); | ||
| echo sprintf("%.2f", $f) . "\n"; | ||
| echo sprintf("%.2F", $f) . "\n"; | ||
|
|
||
| echo "- export/import:\n"; | ||
| echo var_export($f, true) . "\n"; | ||
| echo serialize($f) . "\n"; | ||
| echo json_encode($f) . "\n"; | ||
|
|
||
| echo "- debugging:\n"; | ||
| echo print_r($f, true) . "\n"; | ||
| var_dump($f); | ||
| debug_zval_dump($f); | ||
|
|
||
| echo "- other:\n"; | ||
| echo implode([$f]) . "\n"; | ||
| } | ||
|
|
||
| setlocale(LC_ALL, "C"); | ||
| echo "C locale:\n"; | ||
|
|
||
| print_float(3.14); | ||
|
|
||
| setlocale( | ||
| LC_ALL, | ||
| "german", "de", "de_DE", "de_DE.ISO8859-1", "de_DE.ISO_8859-1", "de_DE.UTF-8", | ||
| "french", "fr", "fr_FR", "fr_FR.ISO8859-1", "fr_FR.ISO_8859-1", "fr_FR.UTF-8", | ||
| ); | ||
| echo "\nde_DE locale:\n"; | ||
|
|
||
| print_float(3.14); | ||
|
|
||
| ?> | ||
| --EXPECT-- | ||
| C locale: | ||
| - casting: | ||
| 3.14 | ||
| 3.14 | ||
| 3.14 | ||
| - *printf functions: | ||
| 3.14 | ||
| 3.14 | ||
| 3.14 | ||
| 3.14 | ||
| - export/import: | ||
| 3.14 | ||
| d:3.14; | ||
| 3.14 | ||
| - debugging: | ||
| 3.14 | ||
| float(3.14) | ||
| float(3.14) | ||
| - other: | ||
| 3.14 | ||
|
|
||
| de_DE locale: | ||
| - casting: | ||
| 3.14 | ||
| 3.14 | ||
| 3.14 | ||
| - *printf functions: | ||
| 3,14 | ||
| 3.14 | ||
| 3,14 | ||
| 3.14 | ||
| - export/import: | ||
| 3.14 | ||
| d:3.14; | ||
| 3.14 | ||
| - debugging: | ||
| 3.14 | ||
| float(3.14) | ||
| float(3.14) | ||
| - other: | ||
| 3.14 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| --TEST-- | ||
| Test that float to string and string to float casts are consistent | ||
| --SKIPIF-- | ||
| <?php | ||
| if (!setlocale( | ||
| LC_ALL, | ||
| "german", "de", "de_DE", "de_DE.ISO8859-1", "de_DE.ISO_8859-1", "de_DE.UTF-8", | ||
| "french", "fr", "fr_FR", "fr_FR.ISO8859-1", "fr_FR.ISO_8859-1", "fr_FR.UTF-8", | ||
| )) { | ||
| die("skip locale needed for this test is not supported on this platform"); | ||
| } | ||
| ?> | ||
| --FILE-- | ||
| <?php | ||
|
|
||
| setlocale( | ||
| LC_ALL, | ||
| "german", "de", "de_DE", "de_DE.ISO8859-1", "de_DE.ISO_8859-1", "de_DE.UTF-8", | ||
| "french", "fr", "fr_FR", "fr_FR.ISO8859-1", "fr_FR.ISO_8859-1", "fr_FR.UTF-8", | ||
| ); | ||
|
|
||
| $float = 1/3; | ||
| $string = (string) $float; | ||
| $float = (float) $string; | ||
|
|
||
| printf("%.2f", $float); | ||
|
|
||
| ?> | ||
| --EXPECT-- | ||
| 0,33 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.