-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/spl/tests/
File Upload :
Current File : //usr/src/php/ext/spl/tests/fixedarray_013.phpt

--TEST--
SPL: FixedArray: Passing the object using [] as parameter
--FILE--
<?php

$a = new SplFixedArray(100);


function test(SplFixedArray &$arr) {
	print "ok\n";
}

try {
	test($a[]);
} catch (Exception $e) {
	echo $e->getMessage(), "\n";
}

?>
--EXPECT--
Index invalid or out of range

Copyright © 2017 || Recoded By Mr.Bumblebee