summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_count_checkParams.phpt
blob: 5cbe2e80cea9c78fcb0072a1972eada446ffd821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Makes sure that an integer cannot be passed into the count() method of the splFixedArray.
--CREDITS--
PHPNW Test Fest 2009 - Rick Ogden
--FILE--
<?php
$ar = new SplFixedArray(3);
$ar[0] = 1;
$ar[1] = 2;
$ar[2] = 3;

echo $ar->count(3);
?>
--EXPECTF--
Warning: SplFixedArray::count() expects exactly 0 parameters, 1 given in %s on line %d