12345678910111213141516 |
- --TEST--
- SplFixedArray::__construct() with array passed as integer.
- --CREDITS--
- PHPNW Test Fest 2009 - Jordan Hatch
- --FILE--
- <?php
- try {
- $array = new SplFixedArray( array("string", 1) );
- } catch (TypeError $iae) {
- echo "Ok - ".$iae->getMessage().PHP_EOL;
- }
- ?>
- --EXPECT--
- Ok - SplFixedArray::__construct() expects parameter 1 to be int, array given
|