从打开的文件中读取 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);
?>
运行示例 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!