mirror of
https://github.com/php/php-src.git
synced 2026-04-11 10:03:18 +02:00
17 lines
282 B
PHP
17 lines
282 B
PHP
--TEST--
|
|
DOMDocument::adoptNode not implemented
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$dom = new DOMDocument();
|
|
$dom->loadXML("<root />");
|
|
|
|
$dom->adoptNode($dom->documentElement);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: DOMDocument::adoptNode(): Not yet implemented in %s
|