PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

SplFileObject::fread - Read from file | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

SplFileObject::fread

(PHP 5 >= 5.5.11, PHP 7)

SplFileObject::freadRead from file

説明

public string SplFileObject::fread ( int $length )

Reads the given number of bytes from the file.

パラメータ

length

The number of bytes to read.

返り値

Returns the string read from the file 失敗した場合に FALSE を返します.

例1 SplFileObject::fread() example

<?php
// Get contents of a file into a string
$filename "/usr/local/something.txt";
$file = new SplFileObject($filename"r");
$contents $file->fread($file->getSize());
?>

注意

注意:

Note that SplFileObject::fread() reads from the current position of the file pointer. Use SplFileObject::ftell() to find the current position of the pointer and SplFileObject::rewind() (or SplFileObject::fseek()) to rewind the pointer position.

参考

  • fread() - バイナリセーフなファイルの読み込み


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「SplFileObject::fread - Read from file」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | SplFileObject::fread - Read from file」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: