我希望你能帮助我。XML 文件如下所示:
<channel><item>
<description>
<div> <a href="http://image.com">
<span>
<img src="http://image.com" />
</span>
</a>
Lorem Ipsum is simply dummy text of the printing etc...
</div>
</description>
</item></channel>
我可以获取描述标签的内容,但是当我这样做时,我会得到其中有很多 css 的整个结构,我不想要那个。我真正需要的是仅解析 href 链接和 Lorem Ipsum 文本。我正在尝试使用简单的 XML,但找不到,看起来太复杂了。有任何想法吗?
编辑: 我用来解析 xml 的代码
$file = new SimpleXMLElement($mydata);
{
foreach($file->channel->item as $post)
{
echo $post->description; } }