- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP fread() 函数
完整的 PHP Filesystem 参考手册
定义和用法
fread() 函数读取打开的文件。
函数会在到达指定长度或读到文件末尾(EOF)时(以先到者为准),停止运行。
该函数返回读取的字符串,如果失败则返回 FALSE。
语法
string fread ( resource $handle , int $length )
参数 | 描述 |
---|---|
handle | 文件系统指针,是典型地由 fopen() 创建的 resource(资源)。 |
length | 必需。规定要读取的最大字节数。 |
提示和注释
提示:该函数是二进制安全的。(意思是二进制数据(如图像)和字符数据都可以使用此函数写入。)
实例 1
从文件中读取 10 个字节:
<?php
$file = fopen("test.txt","r");
$contents = fread($file,"10");
fclose($file);
?>
$file = fopen("test.txt","r");
$contents = fread($file,"10");
fclose($file);
?>
实例 2
读取整个文件:
<?php
$file = fopen("test.txt","r");
$contents = fread($file,filesize("test.txt"));
fclose($file);
?>
$file = fopen("test.txt","r");
$contents = fread($file,filesize("test.txt"));
fclose($file);
?>
完整的 PHP Filesystem 参考手册
上一篇:PHP fputs() 函数
下一篇:PHP fscanf() 函数
关注微信小程序
扫描二维码
程序员编程王