summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_construct_param_SplFixedArray.phpt
blob: 6582f847bddf9a8c18f67e44cd633b25d3059355 (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 long, object given in %s on line %d
object(SplFixedArray)#1 (0) {
}