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.

13 lines
212 B

  1. --TEST--
  2. SplFixedArray::__construct() with float passed as parameter.
  3. --CREDITS--
  4. PHPNW Test Fest 2009 - Jordan Hatch
  5. --FILE--
  6. <?php
  7. $array = new SplFixedArray( 3.141 );
  8. echo $array->getSize();
  9. ?>
  10. --EXPECT--
  11. 3