summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt
blob: e91f110cd469b2bb37d56947410e52c3ba235e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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 integer, object given in %s on line %d
object(SplFixedArray)#1 (0) {
}