mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
c373356f45
fix some warnings add test
17 lines
301 B
PHP
17 lines
301 B
PHP
--TEST--
|
|
Bug #46849 (Cloning DOMDocument doesn't clone the properties).
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$dom = new DOMDocument;
|
|
$dom->formatOutput = 1;
|
|
var_dump($dom->formatOutput);
|
|
|
|
$dom2 = clone $dom;
|
|
var_dump($dom2->formatOutput);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|