最新的Web开发教程
 

PHP sprintf() Function

<PHP字符串参考

替换百分比(%)由作为参数传递的变量符号:

<?php
$number = 9;
$str = "Beijing";
$txt = sprintf("There are %u million bicycles in %s.",$number,$str);
echo $txt;
?>
运行示例»

定义和用法

所述sprintf()函数格式化的字符串写入到一个变量中。

的ARG1,ARG2,++参数将被插入百分之(%)主字符串中的迹象。 此功能"step-by-step" 。 在第一%符号,ARG1被插入时,在第二%符号,ARG2插入等

Note:如果有更多的%比参数,你必须使用占位符。 占位符是在%之后插入,并且由argument-号和"\$" 。 见例如两个。

Tip:相关函数: printf()vprintf() vsprintf() fprintf()vfprintf()


句法

sprintf( format,arg1,arg2,arg++ )

参数 描述
format 需要。 指定字符串,以及如何格式化变量的原因。

可能格式值:

  • %% - 返回百分号
  • %B - 二进制数
  • %C - 根据ASCII值的字符
  • %D -符号十进制数(negative, zero or positive)
  • %E -使用小写科学记数法(eg 1.2e+2)
  • %E -使用大写科学记数法(eg 1.2E+2)
  • %U -无符号十进制数(equal to or greather than zero)
  • %F -浮点数(local settings aware)
  • %F - 浮点数(非本地设置意识到)
  • %克 - %e和%F的短
  • %G - %E和%F的短
  • %氧气 - 八进制数
  • %S - 字符串
  • %X -十六进制数(lowercase letters)
  • %X -十六进制数(uppercase letters)

其他格式的值。 这些被置于%和字母之间(example %.2f)

  • +(力量都+和 - 在数字前默认情况下,只有负数是被标记。)
  • “(指定为填充使用什么默认为空间必须与宽度指定一起使用实施例:。%” x20s (this uses "x" as padding)
  • - (Left-justifies the variable value)
  • [0-9] (Specifies the minimum width held of to the variable value)
  • [0-9](指定的十进制数或最大字符串长度的数量)

Note:如果使用多个附加格式值,它们必须是在与上述顺序相同。

arg1 需要。 在格式字符串中的第一个%-sign要被插入的参数
arg2 可选的。 在格式字符串中的第二个%-sign要被插入的参数
arg++ 可选的。 在第三被插入的参数,第四等%-sign格式字符串

技术细节

返回值: 返回格式化字符串
PHP版本: 4+

更多示例

实施例1

使用格式值%F:

<?php
$number = 123;
$txt = sprintf("%f",$number);
echo $txt;
?>
运行示例»

实施例2

占位符的使用:

<?php
$number = 123;
$txt = sprintf("With 2 decimals: %1\$.2f
<br>With no decimals: %1\$u",$number);
echo $txt;
?>
运行示例»

实施例3

所有可能的格式值的演示:

<?php
$num1 = 123456789;
$num2 = -123456789;
$char = 50; // The ASCII Character 50 is 2

// Note: The format value "%%" returns a percent sign
echo sprintf("%%b = %b",$num1)."<br>"; // Binary number
echo sprintf("%%c = %c",$char)."<br>"; // The ASCII Character
echo sprintf("%%d = %d",$num1)."<br>"; // Signed decimal number
echo sprintf("%%d = %d",$num2)."<br>"; // Signed decimal number
echo sprintf("%%e = %e",$num1)."<br>"; // Scientific notation (lowercase)
echo sprintf("%%E = %E",$num1)."<br>"; // Scientific notation (uppercase)
echo sprintf("%%u = %u",$num1)."<br>"; // Unsigned decimal number (positive)
echo sprintf("%%u = %u",$num2)."<br>"; // Unsigned decimal number (negative)
echo sprintf("%%f = %f",$num1)."<br>"; // Floating-point number (local settings aware)
echo sprintf("%%F = %F",$num1)."<br>"; // Floating-point number (not local sett aware)
echo sprintf("%%g = %g",$num1)."<br>"; // Shorter of %e and %f
echo sprintf("%%G = %G",$num1)."<br>"; // Shorter of %E and %f
echo sprintf("%%o = %o",$num1)."<br>"; // Octal number
echo sprintf("%%s = %s",$num1)."<br>"; // String
echo sprintf("%%x = %x",$num1)."<br>"; // Hexadecimal number (lowercase)
echo sprintf("%%X = %X",$num1)."<br>"; // Hexadecimal number (uppercase)
echo sprintf("%%+d = %+d",$num1)."<br>"; // Sign specifier (positive)
echo sprintf("%%+d = %+d",$num2)."<br>"; // Sign specifier (negative)
?>
运行示例»

实施例4

字串符的演示:

<?php
$str1 = "Hello";
$str2 = "Hello world!";

echo sprintf("[%s]",$str1)."<br>";
echo sprintf("[%8s]",$str1)."<br>";
echo sprintf("[%-8s]",$str1)."<br>";
echo sprintf("[%08s]",$str1)."<br>";
echo sprintf("[%'*8s]",$str1)."<br>";
echo sprintf("[%8.8s]",$str2)."<br>";
?>
运行示例»

<PHP字符串参考