数値をカンマ区切りで表示する|PHP
PHPではnumber_format()
を使用すると、数値をカンマ区切りで出力できます。
number_format(数値);
number_format(数値文字列);
number_format(10000);
=>10,000
number_format('10000');
=>10,000
下記はエラーになります。
number_format('10,000');
PHPではnumber_format()
を使用すると、数値をカンマ区切りで出力できます。
number_format(数値);
number_format(数値文字列);
number_format(10000);
=>10,000
number_format('10000');
=>10,000
下記はエラーになります。
number_format('10,000');