php中sprintf与printf函数用法区别解析
下面是一个示例:四舍五入保留小数点后两位
<?php
$num1 = 21;
echo sprintf("%0.2f",$num1)."<br />"; //输出 21.00
$num2 = 16.3287;
echo sprintf("%0.2f",$num2)."<br />"; //输出 16.33
$num3 = 32.12329;
echo sprintf("%0.2f",$num3)."<br />"; //输出 32.12
?>
解释下 %0.2f 的含义:
% 表示起始字符
0 表示空位用0填满
2 表示小数点后必须占两位
f 表示转换成浮点数
转换字符
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
% 印出百分比符号,不转换。
b 整数转成二进位。
c 整数转成对应的 ascii 字元。
d 整数转成十进位。
f 倍精确度数字转成浮点数。
o 整数转成八进位。
s 整数转成字串。
x 整数转成小写十六进位。
x 整数转成大写十六进位。
printf与sprintf的区别
1. printf函数:
int printf ( string format [, mixed args [, mixed ...]] )
produces output according to format , which is described in the documentation for sprintf() .
returns the length of the outputted string.
把文字格式化以后输出,如:
$name="hunte";
$age=25;
printf("my name is %s, age %d", $name, $age);
2. sprintf函数:
string sprintf ( string format [, mixed args [, mixed ...]] )
returns a string produced according to the formatting string format .
跟printf相似,但不打印,而是返回格式化后的文字,其他的与printf一样。
3. print函数:
是函数,可以返回一个值,只能有一个参数。
int print ( string arg )
outputs arg . returns 1 , always.
上一篇: 想拥有人人称羡的苗条身材吗?5招打造易瘦体质事半功倍
下一篇: 气功心法 丹田内气功练习方法
推荐阅读
-
php中isset与empty函数的困惑与用法分析
-
php判断某个方法是否存在函数function_exists (),method_exists()与is_callable()区别与用法解析
-
解析php中const与define的应用区别
-
jQuery中bind,live,delegate与one方法的用法及区别解析
-
PHP中substr()与explode()函数用法分析
-
深入浅析php中sprintf与printf函数的用法及区别
-
php中数字、字符与对象判断函数用法实例
-
php中FTP函数ftp_connect、ftp_login与ftp_chmod用法
-
php中getservbyport与getservbyname函数用法实例
-
PHP中addcslashes与stripcslashes函数用法分析