我想使用php在父元素中获取HTML。例如,我有这样的结构:
<p>
<p>this is my first xml file </p>
</p>
我希望得到以下文字。
<p>this is my first xml file </p>
答案 0 :(得分:0)
使用DOM Parser
<?php
$html='<p>
<p>this is my first xml file </p>
</p>';
$dom = new DOMDocument;
@$dom->loadHTML($html);
foreach ($dom->getElementsByTagName('p') as $tag){
if(!empty($tag->nodeValue)){ echo $tag->nodeValue;}
}