SplFileObject
PHP Manual

SplFileObject::seek

(PHP 5 >= 5.1.0)

SplFileObject::seekSeek to specified line

説明

public void SplFileObject::seek ( int $line_pos )

Seek to specified line in the file.

パラメータ

line_pos

The zero-based line number to seek to.

返り値

値を返しません。

エラー / 例外

Throws a LogicException if the line_pos is negative.

例1 SplFileObject::seek example

This example outputs the third line of the script which is found at position 2.

<?php
$file 
= new SplFileObject(__FILE__);
$file->seek(2);
echo 
$file->current();
?>

上の例の出力は、 たとえば以下のようになります。

$file->seek(2);

参考


SplFileObject
PHP Manual