You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
344 B

--TEST--
Create an SplFixedArray using an SplFixedArray object.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$array = new SplFixedArray(new SplFixedArray(3));
var_dump($array);
?>
--EXPECTF--
Warning: SplFixedArray::__construct() expects parameter 1 to be long, object given in %s on line %d
object(SplFixedArray)#1 (0) {
}