pdo_037.phpt 348 B

1234567891011121314151617181920
  1. --TEST--
  2. Crash when calling a method of a class that inherits PDOStatement
  3. --EXTENSIONS--
  4. pdo
  5. --FILE--
  6. <?php
  7. class MyStatement extends PDOStatement
  8. {
  9. }
  10. $obj = new MyStatement;
  11. var_dump($obj->foo());
  12. ?>
  13. --EXPECTF--
  14. Fatal error: Uncaught Error: Call to undefined method MyStatement::foo() in %s:%d
  15. Stack trace:
  16. #0 {main}
  17. thrown in %s on line %d