PHP fprint() 函數用於將格式化的字符串寫入流。換句話說,我們可以說這個函數將字符串格式化為指定的輸出流(文件或數據庫)。
用法:
fprintf(stream,format,arg1,arg2,arg++)
參數 | 描述 | 必需/可選 |
---|---|---|
stream | 指定字符串寫入/輸出字符串的位置 | Required |
Format | 指定字符串。 | Required |
arg1 | 首先指定要插入的參數。 | required |
arg2 | 指定要在第二個插入的參數。 | Optional |
參數++ | 指定要在第三個、第四個等處插入的參數。 | Optional |
例子1
<?php
$number = 9;
$str = "javatpoint";
$file = fopen("test.txt","w");
echo fprintf($file,"There are %u million bicycles in %s.",$number,$str);
?>
輸出:
43
例子2
<?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)
?>
輸出:
%b = 111010110111100110100010101 %c = 2 %d = 123456789 %d = -123456789 %e = 1.234568e+8 %E = 1.234568E+8
例子3
<?php
$num1 = 123456789;
$num2 = -123456789;
$char = 50; // The ASCII Character 50 is 2
// Note:The format value "%%" returns a percent sign
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
?>
輸出:
%u = 123456789 %u = 4171510507 %f = 123456789.000000 %F = 123456789.000000 %g = 1.23457e+8 %G = 1.23457E+8 %o = 726746425
示例 4
<?php
$num1 = 123456789;
$num2 = -123456789;
$char = 50; // The ASCII Character 50 is 2
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)*/
?>
輸出:
%s = 123456789 %x = 75bcd15 %X = 75BCD15 %+d = +123456789 %+d = -123456789
相關用法
- PHP fputs( )用法及代碼示例
- PHP fpassthru( )用法及代碼示例
- PHP fputcsv()用法及代碼示例
- PHP fwrite( )用法及代碼示例
- PHP ftruncate( )用法及代碼示例
- PHP ftp_rawlist()用法及代碼示例
- PHP ftp_close()用法及代碼示例
- PHP fstat( )用法及代碼示例
- PHP ftp_set_option()用法及代碼示例
- PHP filter_id()用法及代碼示例
- PHP ftell( )用法及代碼示例
- PHP function_exists()用法及代碼示例
- PHP ftp_size()用法及代碼示例
- PHP filter_input()用法及代碼示例
- PHP filter_var()用法及代碼示例
- PHP frenchtojd()用法及代碼示例
- PHP ftp_login()用法及代碼示例
- PHP file_get_contents()用法及代碼示例
- PHP ftp_put()用法及代碼示例
- PHP fgetss( )用法及代碼示例
注:本文由純淨天空篩選整理自 PHP fprint() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。