1234567891011 |
- Creates array, uses the count function to get the size of the array, but passes a parameter.
- Philip Norton philipnorton42@gmail.com
- <?php
- $array = new SplFixedArray(5);
- echo $array->count(3);
- ?>
- Warning: SplFixedArray::count() expects exactly 0 parameters, 1 given in %s on line %d
|