17 lines
275 B
Plaintext
17 lines
275 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #46849 (Cloning DOMDocument doesn't clone the properties).
|
||
|
|
--EXTENSIONS--
|
||
|
|
dom
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$dom = new DOMDocument;
|
||
|
|
$dom->formatOutput = true;
|
||
|
|
var_dump($dom->formatOutput);
|
||
|
|
|
||
|
|
$dom2 = clone $dom;
|
||
|
|
var_dump($dom2->formatOutput);
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
bool(true)
|
||
|
|
bool(true)
|