最新的Web開發教程
 

PHP vsprintf() Function

<PHP字符串參考

格式化字符串寫入到一個變量:

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

定義和用法

vsprintf()函數格式化的字符串寫入到一個變量中。

不像sprintf()在參數vsprintf()被放置在陣列中。 陣列元件將在百分之被插入(%)主字符串中的跡象。 此功能"step-by-step" 。 在第一%後,將第一個數組元素被插入時,在第二%後,將第二個數組元素被插入等

Note:如果有更多的%比參數,你必須使用佔位符。 佔位符是在%之後插入,並且由argument-號和"\$" 見例如兩個。

Tip:相關函數: fprintf() vfprintf() printf()sprintf()vprintf()


句法

vsprintf( format,argarray )

參數 描述
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:如果使用多個附加格式值,它們必須是在與上述順序相同。

argarray 需要。 與參數數組在格式字符串中的%符號被插入

技術細節

返回值: 返回數組值作為格式化的字符串
PHP版本: 4.1.0+

更多示例

實施例1

使用格式值%F:

<?php
$num1 = 123;
$num2 = 456;
$txt = vsprintf("%f%f",array($num1,$num2));
echo $txt;
?>
運行示例»

實施例2

佔位符的使用:

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

實施例3

使用sprintf()來證明所有可能的格式值:

<?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 vsprintf("[%s]",array($str1))."<br>";
echo vsprintf("[%8s]",array($str1))."<br>";
echo vsprintf("[%-8s]",array($str1))."<br>";
echo vsprintf("[%08s]",array($str1))."<br>";
echo vsprintf("[%'*8s]",array($str1))."<br>";
echo vsprintf("[%8.8s]",array($str2))."<br>";
?>
運行示例»

<PHP字符串參考