bug_77849_2.phpt 317 B

12345678910111213141516
  1. --TEST--
  2. PDO Common: Bug #77849 (inconsistent state of cloned statament object)
  3. --EXTENSIONS--
  4. pdo
  5. --FILE--
  6. <?php
  7. $stmt = new PDOStatement();
  8. clone $stmt;
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Uncaught Error: Trying to clone an uncloneable object of class PDOStatement in %s:4
  12. Stack trace:
  13. #0 {main}
  14. thrown in %s on line 4