例
寫一些文字命名的文本文件"test.txt"
<?php
$number = 9;
$str = "Beijing";
$file = fopen("test.txt","w");
echo vfprintf($file,"There are %u million bicycles in %s.",array($number,$str));
?>
代碼的輸出將是:
40
下面的文本將被寫入文件"test.txt"
There are 9 million bicycles in Beijing.
定義和用法
所述vfprintf()函數格式化的字符串寫入到指定的輸出流(example: file or database) 。
不像fprintf()在參數vfprintf()被放置在陣列中。 陣列元件將在百分之被插入(%)主字符串中的跡象。 此功能"step-by-step" 。 在第一%後,將第一個數組元素被插入時,在第二%後,將第二個數組元素被插入等
Note:如果有更多的%比參數,你必須使用佔位符。 佔位符是在%之後插入,並且由argument-號和"\$" 見例如兩個。
Tip:相關函數: fprintf() printf() , sprintf() vprintf()和vsprintf()
句法
vfprintf( stream,format,argarray )
參數 | 描述 |
---|---|
stream | 需要。 指定在哪裡寫/輸出字符串 |
format | 需要。 指定字符串,以及如何格式化變量的原因。 可能格式值:
其他格式的值。 這些被置於%和字母之間(example %.2f)
Note:如果使用多個附加格式值,它們必須是在與上述順序相同。 |
argarray | 需要。 與參數數組在格式字符串中的%符號被插入 |
技術細節
返回值: | 返回寫入字符串的長度 |
---|---|
PHP版本: | 5+ |
更多示例
實施例1
寫一些文本文件:
<?php
$num1 = 123;
$num2 = 456;
$file = fopen("test.txt","w");
vfprintf($file,"%f%f",array($num1,$num2));
?>
下面的文本將被寫入文件"test.txt"
123.000000456.000000
實施例2
佔位符的使用:
<?php
$number = 123;
$file = fopen("test.txt","w");
vfprintf($file,"With 2 decimals: %1\$.2f
\nWith no decimals: %1\$u",array($number));
?>
下面的文本將被寫入文件"test.txt"
With 2 decimals: 123.00
With no decimals: 123
實施例3
使用printf()證明所有可能的格式值:
<?php
$num1 = 123456789;
$num2 = -123456789;
$char = 50; // The
ASCII Character 50 is 2
// Note: The format value "%%" returns a
percent sign
printf("%%b = %b <br>",$num1); // Binary number
printf("%%c
= %c <br>",$char); // The ASCII Character
printf("%%d = %d <br>",$num1);
// Signed decimal number
printf("%%d = %d <br>",$num2); // Signed decimal
number
printf("%%e = %e <br>",$num1); // Scientific notation (lowercase)
printf("%%E = %E <br>",$num1); // Scientific notation (uppercase)
printf("%%u
= %u <br>",$num1); // Unsigned decimal number (positive)
printf("%%u = %u
<br>",$num2); // Unsigned decimal number (negative)
printf("%%f = %f <br>",$num1);
// Floating-point number (local settings aware)
printf("%%F = %F <br>",$num1);
// Floating-point number (not local settings aware)
printf("%%g = %g <br>",$num1);
// Shorter of %e and %f
printf("%%G = %G <br>",$num1); // Shorter of %E
and %f
printf("%%o = %o <br>",$num1); // Octal number
printf("%%s = %s
<br>",$num1); // String
printf("%%x = %x <br>",$num1); // Hexadecimal
number (lowercase)
printf("%%X = %X <br>",$num1); // Hexadecimal number
(uppercase)
printf("%%+d = %+d <br>",$num1); // Sign specifier (positive)
printf("%%+d = %+d <br>",$num2); // Sign specifier (negative)
?>
運行示例» <PHP字符串參考