fread() 函數可以從一個打開的文件中讀取,該函數可以在文件末尾或到達指定長度時停止,以先到者為準。此函數可以在失敗時返回讀取字符串或 false。
用法
string fread ( resource $handle , int $length )
fread() 函數可以從句柄引用的文件指針中讀取最多長度字節。
示例1
<?php
$filename = "/PhpProject/sample.txt";
$handle = fopen($filename, "r");
echo fread($handle, "30");
fclose($handle);
?>
輸出
Tutorialspoint Tutorix Hello
示例2
<?php
$filename = "/PhpProject/sample.txt";
$file = fopen($filename, "r");
$contents = fread($file, filesize($filename));
echo $contents;
fclose($file);
?>
輸出
Tutorialspoint Tutorix Hello Tutorialspoint!!!!
相關用法
- PHP fread()用法及代碼示例
- PHP fread( )用法及代碼示例
- PHP frenchtojd()用法及代碼示例
- PHP fwrite( )用法及代碼示例
- PHP ftruncate( )用法及代碼示例
- PHP ftp_rawlist()用法及代碼示例
- PHP flock()用法及代碼示例
- PHP fileowner()用法及代碼示例
- PHP ftp_close()用法及代碼示例
- PHP fgets()用法及代碼示例
- PHP fileperms()用法及代碼示例
- PHP function_exists()用法及代碼示例
- PHP fmod()用法及代碼示例
- PHP ftp_nb_put()用法及代碼示例
- PHP fputs()用法及代碼示例
- PHP ftp_chmod()用法及代碼示例
- PHP filter_id()用法及代碼示例
- PHP ftp_nb_fget()用法及代碼示例
- PHP fgetc()用法及代碼示例
- PHP ftell( )用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function fread()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。