(PHP 8)
DOMCharacterData::remove — Removes the character data
Cette fonction ne contient aucun paramètre.
Aucune valeur n'est retournée.
Exemple #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();
?>
L'exemple ci-dessus va afficher :
<?xml version="1.0"?> <container><world/></container>