bug54292.phpt 317 B

1234567891011121314
  1. --TEST--
  2. Bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())
  3. --FILE--
  4. <?php
  5. try {
  6. new SplFileObject('foo', array());
  7. } catch (TypeError $e) {
  8. var_dump($e->getMessage());
  9. }
  10. ?>
  11. --EXPECT--
  12. string(85) "SplFileObject::__construct(): Argument #2 ($mode) must be of type string, array given"