2023-09-08

在PHP中的fread()函数


在PHP中的fread()函数

fread()函数从打开的文件中读取数据。fread()函数在文件末尾或者达到指定长度时停止。成功时返回读取的字符串。失败时返回FALSE。

语法

fread(file_pointer, length)
登录后复制

参数

  • file_pointer − 使用fopen()创建的文件系统指针资源。必需。

  • length − 要读取的最大字节数。必需。

返回值

如果成功,fread()函数返回读取的字符串。如果失败,返回FALSE。

假设我们有一个名为”one.txt”的文件,其中包含以下行。

Cricket and Football are popular sports.
登录后复制
登录后复制

The following is an example that reads 7 bytes from a file.

Example

<?php
   $file_pointer = fopen("one.txt", "r");
   // fread() function
   echo fread($file_pointer, "7");
   fclose($file_pointer);
?>
登录后复制

Output

Cricket
登录后复制

让我们看一个读取同一个文件“one.txt”中所有字节的另一个例子。

示例

<?php
   $file_pointer = fopen("one.txt", "r");
   // fread() function
   echo fread($file_pointer, filesize("one.txt"));
   fclose($file_pointer);
?>
登录后复制

Output

Cricket and Football are popular sports.
登录后复制
登录后复制

以上就是在PHP中的fread()函数的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/603971.html

发表回复

Your email address will not be published. Required fields are marked *