Php/func string sprintf

来自菜鸟教程
跳转至:导航、​搜索

PHP sprintf()函数

❮PHP字符串参考

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

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

定义和用法

sprintf()函数将格式化的字符串写入变量。

arg1,arg2,++参数将以百分号(%)插入主字符串中。此功能“逐步”工作。在第一个%符号处插入arg1,在第二个%符号处插入arg2,依此类推。

注意: 如果%符号比参数更多,则必须使用占位符。占位符插入%符号后,并由参数数字和“ \ $”组成。参见示例二。

Tip: 相关功能: printf()

, vprintf()

, vsprintf()

, fprintf()

and vfprintf()

句法

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

参数值

参数 描述
format

需要。指定字符串以及如何格式化其中的变量。 可能的格式值:

  • %%-返回百分号
  • %b-二进制数
  • %c-根据ASCII值的字符
  • %d-带符号的十进制数字(负,零或正)
  • %e-使用小写字母的科学计数法(例如1.2e + 2)
  • %E-使用大写字母的科学计数法(例如1.2E + 2)
  • %u-无符号十进制数字(等于或大于零)
  • %f-浮点数(可识别本地设置)
  • %F-浮点数(不支持本地设置)
  • %g-%e和%f中的较短者
  • %G-%E和%f中的较短者
  • %o-八进制数
  • %s-字符串
  • %x-十六进制数字(小写字母)
  • %X-十六进制数字(大写字母)

其他格式值。它们位于%和字母之间(例如%.2f):

  • +(在数字前同时加上+和-。默认情况下,仅标记负数)
  • '(指定用作填充的内容。默认为空格。必须与宽度说明符一起使用。示例:%'x20s(使用“ x”作为填充)
  • -(左对齐变量值)
  • [0-9](指定保持可变值的最小宽度)
  • 。[0-9](指定小数位数或最大字符串长度)

注意: 如果使用了多个其他格式值,则它们必须与上述顺序相同。

arg1 需要。要在格式字符串的第一个%符号处插入的参数
arg2 可选的。要在格式字符串的第二个%符号处插入的参数
arg++ 可选的。要在第三,第四等处插入的参数。%签署格式字符串

技术细节

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

更多例子

使用格式值%f:

<?php

$number = 123;

$txt = sprintf("%f",$number);

echo $txt;

?>

占位符的使用:

<?php

$number = 123;

$txt = sprintf("With 2 decimals: %1\$.2f

<br>With no decimals: %1\$u",$number);

echo $txt;

?>

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

 <?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)
?>

字符串说明符的演示:

 <?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字符串参考