gpt4 book ai didi

php - 如何使用 PHP 的 DOM 解析器从 XML 中提取节点属性

转载 作者:可可西里 更新时间:2023-11-01 12:26:00 24 4
gpt4 key购买 nike

我以前从未真正使用过 DOM 解析器,现在我有一个问题。

我将如何从这个标记中提取 URL:

<files>
<file path="http://www.thesite.com/download/eysjkss.zip" title="File Name" />
</files>

最佳答案

使用简单的 XML:

$xml = new SimpleXMLElement($xmlstr);
echo $xml->file['path']."\n";

输出:

http://www.thesite.com/download/eysjkss.zip

关于php - 如何使用 PHP 的 DOM 解析器从 XML 中提取节点属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3993302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com