php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #80611 NumberFormatter appears to have broken in PHP 8.x.
Submitted: 2021-01-09 21:49 UTC Modified: 2021-07-18 04:22 UTC
From: kit dot soul at usweek dot net Assigned: cmb (profile)
Status: No Feedback Package: Output Control
PHP Version: 8.0.1 OS: Windows
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
42 + 34 = ?
Subscribe to this entry?

 
 [2021-01-09 21:49 UTC] kit dot soul at usweek dot net
Description:
------------
NumberFormatter's formatCurrency() function no longer respects an empty currency symbol.

Output of test script in PHP 7.4.13 (Windows):

	string(6) "0.0043"

Output of test script in PHP 8.0.1 (Windows):

	string(11) "BTC 0.0043"

Conclusion: Something has changed.

I cannot find any mention whatsoever of PHP 8 here: https://www.php.net/manual/en/numberformatter.formatcurrency.php

I asked it here but nobody can even reproduce it (possibly because they don't use Windows?): https://stackoverflow.com/questions/65636460/how-to-resolve-this-new-bug-change-in-behaviour-in-php-8-x-in-regards-to-numberf

Test script:
---------------
$a = new \NumberFormatter('en_US', \NumberFormatter::CURRENCY);
$a->setAttribute(\NumberFormatter::MAX_FRACTION_DIGITS, 8);
$a->setSymbol(NumberFormatter::CURRENCY_SYMBOL, ''); // It's empty because I want it "minimal" for a table cell.
var_dump($a->formatCurrency(0.0043, 'BTC'));


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-01-11 18:44 UTC] cmb@php.net
That is apparently an upstream issue; when building PHP 8.0 with
ICU 66.1 everything works as expected, but with ICU 67.1 the issue
is reproducible.  It is not particularly related to BTC (that
currency is only supported as of ICU 68.1), but also reproduces
with EUR, for instance.  It is also not related to an empty string
as currency symbol, but shows with '$' as well.
 [2021-07-06 16:20 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2021-07-06 16:20 UTC] cmb@php.net
Have you considered to report that upstream[1]?

[1] <http://site.icu-project.org/bugs>
 [2021-07-18 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 08:02:42 2024 UTC