これは私が働いている私のxml出力です
<adamContent projectTypeID="10" genContentID="000002">
<metaData>
<keywordList>
<keyword>
<word>#27</word>
<relevancy>120</relevancy>
</keyword>
<keyword>
<word>#43</word>
<relevancy>114</relevancy>
</keyword>
</keywordList>
<taxonomy type="CPT">
<code>99374</code>
</taxonomy>
</metaData>
<textContent title="Description" ordinal="0" group="0">
<p>An in-depth report on the causes, diagnosis, and treatment of Alzheimer's disease.</p>
</textContent>
</adamContent>
そして、そのような出力が必要です(メタデータノード全体を削除したい)
<adamContent projectTypeID="10" genContentID="000002">
<textContent title="Description" ordinal="0" group="0">
<p>An in-depth report on the causes, diagnosis, and treatment of Alzheimer's disease.</p>
</textContent>
</adamContent>
これは私がこれまでに試した私のphpコードです
<?php
$xmldoc = new DOMDocument();
$atvID = $xmldoc->load('000002.xml', LIBXML_NOBLANKS);
foreach($atvID as $id){
$delnode = $xmldoc->getElementsByTagName('metaData');
$xmldoc->firstChild->removeChild($delnode->item($id));
}
$xmldoc->save('000002.xml');
?>