1--TEST-- 2SPL: SplFileObject::getCurrentLine 3--CREDITS-- 4H�vard Eide <nucleuz at gmail.com> 5#Testfest php.no 6--FILE-- 7<?php 8//line 2 9//line 3 10//line 4 11//line 5 12$s = new SplFileObject(__FILE__); 13$s->seek(1); 14echo $s->getCurrentLine(); 15echo $s->getCurrentLine(); 16?> 17--EXPECT-- 18//line 3 19//line 4 20