SplFixedArray__construct_param_array.phpt 352 B

12345678910111213141516
  1. --TEST--
  2. SplFixedArray::__construct() with array passed as integer.
  3. --CREDITS--
  4. PHPNW Test Fest 2009 - Jordan Hatch
  5. --FILE--
  6. <?php
  7. try {
  8. $array = new SplFixedArray( array("string", 1) );
  9. } catch (TypeError $iae) {
  10. echo "Ok - ".$iae->getMessage().PHP_EOL;
  11. }
  12. ?>
  13. --EXPECT--
  14. Ok - SplFixedArray::__construct() expects parameter 1 to be int, array given