PHP fscanf() 函数
PHP 教程
· 2019-01-25 08:14:14
定义和用法
fscanf() 函数根据指定的格式对来自打开的文件的输入进行解析。
语法
fscanf(file,format,mixed)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
format | 必需。规定格式。 可能的格式值:
附加的格式值。必需放置在 % 和字母之间(例如 %.2f):
注释:如果使用多个上述的格式值,它们必须按照上面的顺序进行使用,不能打乱。 |
mixed | 可选。 |
提示和注释
注释:格式字符串中的任何空白会与输入流中的任何空白匹配。这意味着格式字符串中的制表符 \t 也会与输入流中的一个单一的空格字符匹配。
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Computing Patterns in Strings
Bill Smyth / Addison Wesley / 2003 / $ 75.00
The computation of patterns in strings is a fundamental requirement in many areas of science and information processing. The operation of a text editor, the lexical analysis of a computer program, the......一起来看看 《Computing Patterns in Strings》 这本书的介绍吧!