summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_count_param_int.phpt
blob: 0cb4d06fdded967bc6c69627c0e8f3730355a025 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Creates array, uses the count function to get the size of the array, but passes a parameter.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$array = new SplFixedArray(5);
echo $array->count(3);
?>
--EXPECTF--
Warning: SplFixedArray::count() expects exactly 0 parameters, 1 given in %s on line %d