|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2018-05-04 12:19 UTC] ab@php.net
 
-Status: Open
+Status: Not a bug
  [2018-05-04 12:19 UTC] ab@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 19:00:02 2025 UTC | 
Description: ------------ It would be nice to have the support of the Belarusian ruble currency format (ISO — BYN 933). Currency format is the same as that of the Russian ruble (RUR). Test script: --------------- $fmt = new NumberFormatter('ru-RU', NumberFormatter::CURRENCY); echo $fmt->formatCurrency(123.45, 'BYN'); echo PHP_EOL; echo $fmt->formatCurrency(123.45, 'RUR'); Expected result: ---------------- 123,45 р. 123,45 р. Actual result: -------------- 123,45 BYN 123,45 р.