Statement on glibc/iconv Vulnerability

DOMCharacterData::remove

(PHP 8)

DOMCharacterData::removeRemoves the character data

说明

public DOMCharacterData::remove(): void

Removes the character data.

参数

此函数没有参数。

返回值

没有返回值。

示例

示例 #1 DOMCharacterData::remove() example

Removes the character data.

<?php
$doc
= new DOMDocument;
$doc->loadXML("<container><![CDATA[hello]]><world/></container>");
$cdata = $doc->documentElement->firstChild;

$cdata->remove();

echo
$doc->saveXML();
?>

以上示例会输出:

<?xml version="1.0"?>
<container><world/></container>

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top