SplFileObject::fread
(PHP 5 >= 5.5.11, PHP 7, PHP 8)
SplFileObject::fread — ファイルから読み取る
パラメータ
length
-
読み取るバイト数
戻り値
ファイルから読み取った文字列を返します。
失敗した場合に false
を返します
例
例1 SplFileObject::fread() の例
<?php
// Get contents of a file into a string
$filename = "/usr/local/something.txt";
$file = new SplFileObject($filename, "r");
$contents = $file->fread($file->getSize());
?>
注意
注意:
SplFileObject::fread() は、 ファイルポインタの現在の位置から読み取ることに注意してください。 ポインタの現在の位置を知るには SplFileObject::ftell() を使い、 ポインタの位置を巻き戻すには、 SplFileObject::rewind() (または SplFileObject::fseek()) を使ってください。
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google