PHP fread() 函數(shù)
PHP fread() 函數(shù)

定義和用法
fread() 函數(shù)讀取打開的文件。
函數(shù)會在到達指定長度或讀到文件末尾(EOF)時(以先到者為準),停止運行。
該函數(shù)返回讀取的字符串,如果失敗則返回 FALSE。
語法
string fread ( resource $handle , int $length )
參數(shù) | 描述 |
---|---|
handle | 文件系統(tǒng)指針,是典型地由 fopen() 創(chuàng)建的 resource(資源)。 |
length | 必需。規(guī)定要讀取的最大字節(jié)數(shù)。 |
提示和注釋
提示:該函數(shù)是二進制安全的。(意思是二進制數(shù)據(jù)(如圖像)和字符數(shù)據(jù)都可以使用此函數(shù)寫入。)
實例 1
從文件中讀取 10 個字節(jié):
<?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);
?>

相關(guān)文章
- PHP 安裝
- PHP 變量
- PHP EOF(heredoc) 使用說明
- PHP 運算符
- PHP 面向?qū)ο?/a>
- PHP 文件處理
- PHP 異常處理
- PHP JSON
- PHP array_chunk() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)
- PHP Libxml 函數(shù)