mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

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
29 lines
505 B
PHP
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
|