SplFileObject::current
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::current — ファイルの現在の行を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
ファイルの現在の行を取得します。SplFileObject::READ_CSV
フラグがセットされている場合、このメソッドは CSV データとして処理された現在の行を格納している配列を返します。
ファイルの終端に達した場合、false
を返します。
例
例1 SplFileObject::current() の例
<?php
$file = new SplFileObject(__FILE__);
foreach ($file as $k => $line) {
echo ($file->key() + 1) . ': ' . $file->current();
}
?>
上の例の出力は、 たとえば以下のようになります。
1: <?php 2: $file = new SplFileObject(__FILE__); 3: foreach ($file as $line) { 4: echo ($file->key() + 1) . ': ' . $file->current(); 5: } 6: ?>
参考
- SplFileObject::key() - 行番号を取得する
- SplFileObject::seek() - ファイルポインタを指定行に移動させる
- SplFileObject::next() - 次の行を読み出す
- SplFileObject::rewind() - ファイルポインタを先頭に巻き戻す
- SplFileObject::valid() - ファイル終端でないかチェックする
+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