php-src/ext/dom/tests/DOM4_DOMNode_remove.phpt
Max Semenik bd9f4fa676 Migrate skip checks to --EXTENSIONS--, p2
For rationale, see https://github.com/php/php-src/pull/6787

Make extension checks lowercase, add a special case for opcache
that has internal name not matching .so filename.

Extensions migrated in part 2:
* dom
* exif
* fileinfo
* ffi
2021-04-01 12:08:24 +01:00

29 lines
505 B
PHP

--TEST--
DOMNode::remove()
--EXTENSIONS--
dom
--FILE--
<?php
require_once("dom_test.inc");
$dom = new DOMDocument;
$dom->loadXML('<test><one>first</one><two>second</two></test>');
$element = $dom->documentElement;
print_node($element->firstChild);
$returnValue = $element->firstChild->remove();
print_node($element->firstChild);
var_dump($returnValue);
?>
--EXPECT--
Node Name: one
Node Type: 1
Num Children: 1
Node Content: first
Node Name: two
Node Type: 1
Num Children: 1
Node Content: second
NULL