summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_setSize_param_null.phpt
blob: ddb37be9f035236169dc41d98159b0ca564038ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
SplFixedArray::setSize() with a null parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$fixed_array = new SplFixedArray(2);
$fixed_array->setSize(null);
var_dump($fixed_array);
?>
--EXPECT--
object(SplFixedArray)#1 (0) {
}