bug46849.phpt 272 B

12345678910111213141516
  1. --TEST--
  2. Bug #46849 (Cloning DOMDocument doesn't clone the properties).
  3. --EXTENSIONS--
  4. dom
  5. --FILE--
  6. <?php
  7. $dom = new DOMDocument;
  8. $dom->formatOutput = 1;
  9. var_dump($dom->formatOutput);
  10. $dom2 = clone $dom;
  11. var_dump($dom2->formatOutput);
  12. ?>
  13. --EXPECT--
  14. bool(true)
  15. bool(true)