0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHP: 通貨の表示

Posted at

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?