SplFileObject::ftell
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::ftell — ファイルポインタの現在位置を返す
パラメータ
この関数にはパラメータはありません。
戻り値
ファイルポインタの位置を整数として、もしくはエラーのときは false
を返します。
例
例1 SplFileObject::ftell() の例
<?php
$file = new SplFileObject("/etc/passwd");
// 最初の行を読み込む
$data = $file->fgets();
// どこにいるのか?
echo $file->ftell();
?>
+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