summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_next_param.phpt
blob: 5e8cb633b9fd6cc79320edfe59724435403f51c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
SplFixedArray::next() with a parameter. *BUG*
--CREDITS--
PHPNW Test Fest 2009 - Jordan Hatch
--FILE--
<?php

$array = new SplFixedArray( 4 );

$array[0] = "Hello";
$array[1] = "world";
$array[2] = "elePHPant";

$array->next( "invalid" );

?>
--EXPECTF--
Warning: SplFixedArray::next() expects exactly 0 parameters, 1 given in %s on line %d