最新的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字符串參考