请输入您要查询的百科知识:

 

词条 money_format
释义

定义和用法

money_format() 函数把字符串格式化为货币字符串。

语法

money_format(string,number)

参数 描述

string 必需。规定要格式化的字符串。

number 可选。被插入格式化字符串中 % 符号位置的数字。

提示和注释

注释:money_format() 函数无法在 windows 平台上工作。

例子 1

国际 en_US 格式:

<?php
$number = 1234.56;
setlocale(LC_MONETARY, "en_US");
echo money_format("The price is %i", $number);
?>输出:

The price is USD 1,234.56

例子 2

负数,带有 () 指示负数的 US 国际格式,右侧精度为 2,"*" 为填充字符:

<?php
$number = -1234.5672;
echo money_format("%=*(#10.2n", $number);
?>输出:

($********1,234.57)PHP String 函数

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/15 15:30:02