summaryrefslogtreecommitdiff
path: root/ext/spl/tests/iterator_032.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/iterator_032.phpt')
-rw-r--r--ext/spl/tests/iterator_032.phpt15
1 files changed, 6 insertions, 9 deletions
diff --git a/ext/spl/tests/iterator_032.phpt b/ext/spl/tests/iterator_032.phpt
index 84eb8e61fb..9f56d7574d 100644
--- a/ext/spl/tests/iterator_032.phpt
+++ b/ext/spl/tests/iterator_032.phpt
@@ -7,17 +7,17 @@ $it = new LimitIterator(new ArrayIterator(array(1,2,3,4)), 1, 2);
foreach($it as $k=>$v)
{
- echo "$k=>$v\n";
- var_dump($it->getPosition());
+ echo "$k=>$v\n";
+ var_dump($it->getPosition());
}
try
{
- $it->seek(0);
+ $it->seek(0);
}
catch(OutOfBoundsException $e)
{
- echo $e->getMessage() . "\n";
+ echo $e->getMessage() . "\n";
}
$it->seek(2);
@@ -25,19 +25,17 @@ var_dump($it->current());
try
{
- $it->seek(3);
+ $it->seek(3);
}
catch(OutOfBoundsException $e)
{
- echo $e->getMessage() . "\n";
+ echo $e->getMessage() . "\n";
}
$it->next();
var_dump($it->valid());
?>
-===DONE===
-<?php exit(0); ?>
--EXPECT--
1=>2
int(1)
@@ -47,4 +45,3 @@ Cannot seek to 0 which is below the offset 1
int(3)
Cannot seek to 3 which is behind offset 1 plus count 2
bool(false)
-===DONE===