目录

PHP fread() 函数

❮ PHP 文件系统参考

示例

从打开的文件中读取 10 个字节:

<?php
$file = fopen("test.txt","r");
fread($file,"10");
fclose($file);
?>
运行示例 »

定义和用法

fread() 从打开的文件中读取。

该函数将在文件末尾或达到指定长度时停止,以先到者为准。

语法

fread( file, length)

参数值

Parameter Description
file Required. Specifies the open file to read from
length Required. Specifies the maximum number of bytes to read


技术细节

返回值: 读取的字符串,失败时为 FALSE
PHP 版本: 4.0+
二进制安全: 是的

更多示例

示例

读取整个文件:

<?php
$file = fopen("test.txt","r");
fread($file,filesize("test.txt"));
fclose($file);
?>
运行示例 »

❮ PHP 文件系统参考