mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
16 lines
316 B
PHP
16 lines
316 B
PHP
--TEST--
|
|
DOMDocumentFragment::__construct() called twice.
|
|
--CREDITS--
|
|
Eric Lee Stewart <ericleestewart@gmail.com>
|
|
# TestFest Atlanta 2009-05-24
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$fragment = new DOMDocumentFragment();
|
|
$fragment->__construct();
|
|
var_dump($fragment);
|
|
?>
|
|
--EXPECT--
|
|
object(DOMDocumentFragment)#1 (0) {
|
|
}
|