blob: 269a45de1b3b62e27ec0a04c5296d4026bfa3057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
SplFixedArray::setSize() with an array parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$fixed_array = new SplFixedArray(2);
$fixed_array->setSize(array());
var_dump($fixed_array);
?>
--EXPECTF--
Warning: SplFixedArray::setSize() expects parameter 1 to be long, array given in %s on line %d
object(SplFixedArray)#1 (2) {
[0]=>
NULL
[1]=>
NULL
}
|