You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
229 B

  1. --TEST--
  2. SplFixedArray::__construct() with null passed as parameter.
  3. --CREDITS--
  4. PHPNW Test Fest 2009 - Jordan Hatch
  5. --FILE--
  6. <?php
  7. $array = new SplFixedArray( NULL );
  8. print_r( $array );
  9. ?>
  10. --EXPECTF--
  11. SplFixedArray Object
  12. (
  13. )