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.

12 lines
268 B

  1. --TEST--
  2. SPL: FixedArray: Trying to instantiate passing object to constructor parameter
  3. --FILE--
  4. <?php
  5. $b = new stdClass;
  6. $a = new SplFixedArray($b);
  7. ?>
  8. --EXPECTF--
  9. Warning: SplFixedArray::__construct() expects parameter 1 to be long, object given in %s on line %d