SplFixedArray__construct_param_string.phpt 346 B

12345678910111213141516
  1. --TEST--
  2. SplFixedArray::__construct() with string passed as parameter.
  3. --CREDITS--
  4. PHPNW Test Fest 2009 - Jordan Hatch
  5. --FILE--
  6. <?php
  7. try {
  8. $array = new SplFixedArray( "string" );
  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, string given