PHP vfprintf() 函數(shù)
PHP vfprintf() 函數(shù)
實例
把一些文本寫入到名為 "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));
?>
$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() 函數(shù)把格式化的字符串寫到指定的輸出流(例如:文件或數(shù)據(jù)庫)。
與 fprintf() 不同,vfprintf() 中的參數(shù)位于數(shù)組中。數(shù)組元素將被插入到主字符串中的百分號(%)符號處。該函數(shù)是逐步執(zhí)行的。在第一個 % 符號處,插入第一個數(shù)組元素,在第二個 % 符號處,插入第二個數(shù)組元素,依此類推。
注釋:如果 % 符號多于 arg 參數(shù),則您必須使用占位符。占位符被插入到 % 符號之后,由數(shù)字和 "\$" 組成。請參見實例 2。
提示:相關(guān)函數(shù):fprintf()、 printf()、 sprintf()、vprintf() 和 vsprintf()
語法
vfprintf(stream,format,argarray)
參數(shù) | 描述 |
---|---|
stream | 必需。規(guī)定在哪里寫入/輸出字符串。 |
format | 必需。規(guī)定字符串以及如何格式化其中的變量。 可能的格式值:
附加的格式值。必需放置在 % 和字母之間(例如 %.2f):
注釋:如果使用多個上述的格式值,它們必須按照上面的順序進(jìn)行使用,不能打亂。 |
argarray | 必需。帶有參數(shù)的一個數(shù)組,這些參數(shù)會被插到 format 字符串中的 % 符號處。 |
技術(shù)細(xì)節(jié)
返回值: | 返回被寫的字符串的長度。 |
---|---|
PHP 版本: | 5+ |
更多實例
實例 1
把一些文本寫入到文件中:
<?php
$num1 = 123;
$num2 = 456;
$file = fopen("test.txt","w");
vfprintf($file,"%f%f",array($num1,$num2));
?>
$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));
?>
$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
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)
?>
$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)
?>
運(yùn)行實例 ?

相關(guān)文章
- PHP $_GET 變量
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP 錯誤處理
- PHP array_change_key_case() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP each() 函數(shù)
- PHP end() 函數(shù)
- PHP pos() 函數(shù)
- PHP prev() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP Libxml 函數(shù)