summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFileObject_next_basic.phpt
blob: 59dc7ab58d67a2d45ed022f4d60721a77ccd8a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
SPL: SplFileObject::next basic
--CREDITS--
Ricardo Oedietram <ricardo@odracir.nl>
Erwin Poeze <erwin.poeze@gmail.com>
#PFZ June PHP TestFest 2012
--FILE--
<?php
//line 2
//line 3
//line 4
//line 5
$s = new SplFileObject(__FILE__);
echo $s->current();
$s->next();

echo $s->current();

?>
--EXPECT--
<?php
//line 2