-1

我有一个具有以下架构的 XML 文件:

<?xml version="1.0" encoding="UTF-8"?>
<languages>
<language type="persian" abbr_type="fa">
    <menu>
        <home></home>
        <contact></contact>
        <about></about>
        <style></style>
    </menu>
    <title>
        <home></home>
        <contact></contact>
        <about></about>
        <style></style>
        <list></list>
        <biography></biography>
        <picture></picture>
        <movie></movie>
    </title>
    <about></about>
    <welcome></welcome>
</language>
<language type="english" abbr_type="en">
    <menu>
        <home></home>
        <contact></contact>
        <about></about>
        <style></style>
    </menu>
    <title>
        <home></home>
        <contact></contact>
        <about></about>
        <style></style>
        <list></list>
        <biography></biography>
        <picture></picture>
        <movie></movie>
    </title>
    <about></about>
    <welcome></welcome>
</language>

如果语言标签的属性是“波斯语”,我想获取标题数据。

我怎样才能从 XML 中获取一系列数据呢?有没有办法获取数据并放入数组中?

4

1 回答 1

1

有没有办法获取数据并放入数组中?

是的,您可以使用 DOMDocument > http://php.net/manual/en/class.domdocument.php。它创建了树状结构,您可以在其中轻松找到您要查找的内容。

例子

$xml = new DOMDocument();
$xml->loadXML($xmlString);
$xmlNodeArray = $xml->getElementsByTagName('language');
foreach ($xmlNodeArray as $element) {
    if($element->getAttribute('type') == "persian") {
         // do something with that element
    }
}
于 2012-11-01T21:58:56.953 回答