Ubuntu でライブラリーのインストール
sudo apt install intl
currency_yen.php
#! /usr/bin/php
<?php
// ------------------------------------------------------------------
// currency_yen.php
//
// Jan/05/2021
// ------------------------------------------------------------------
//
fputs (STDERR,"*** 開始 ***\n");
#
$data = [500,4500,34500,234500,1234500];
$fmt = numfmt_create('ja_JP', NumberFormatter::CURRENCY);
#
foreach ($data as $value)
{
print numfmt_format_currency($fmt, $value, 'JPY') . "\n";
}
#
fputs (STDERR,"*** 終了 ***\n");
// ------------------------------------------------------------------
?>
実行結果
$ ./currency_yen.php
*** 開始 ***
¥500
¥4,500
¥34,500
¥234,500
¥1,234,500
*** 終了 ***
次のバージョンで確認しました。
$ php --version
PHP 7.4.9 (cli) (built: Oct 26 2020 15:17:14) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.9, Copyright (c), by Zend Technologies