PHP fscanf() 函数
❮ PHP 文件系统参考
定义和用法
fscanf() 函数根据指定的格式解析打开文件的输入。
注意:格式字符串中的任何空格都与输入流中的任何空格匹配。这意味着格式字符串中的制表符 (\t) 可以匹配输入流中的单个空格字符。
语法
fscanf(
file,
format,
mixed)
参数值
Parameter |
Description |
file |
Required. Specifies the file to check |
format |
Required. Specifies the format. Possible format values:
- %% - Returns a percent sign
- %b - Binary number
- %c - The character according to the ASCII value
- %d - Signed decimal number
- %e - Scientific notation (e.g. 1.2e+2)
- %u - Unsigned decimal number
- %f - Floating-point number (local settings aware)
- %F - Floating-point number (not local settings aware)
- %o - Octal number
- %s - String
- %x - Hexadecimal number (lowercase letters)
- %X - Hexadecimal number (uppercase letters)
Additional format values. These are placed between the % and the letter (example %.2f):
- + (Forces both + and - in front of numbers. By default, only negative numbers are marked)
- ' (Specifies what to use as padding. Default is space. Must be used together with the width specifier. Example: %'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] (Specifies the number of decimal digits or maximum string length)
Note: If multiple additional format values are used, they must be in the same order as above. |
mixed |
Optional. |
技术细节
返回值: |
读取的字符串,失败时为 FALSE |
PHP 版本: |
4.0.1+ |
❮ PHP 文件系统参考