在PHP中解析XML命名空间格式

时间:2016-04-30 23:29:34

标签: xml simplexml

我有一个看起来像这样的xml文件,我希望将其解析为常规XML,尝试循环使用值,尤其是Cell值。

<APIReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models">
<Column xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>Name</d2p1:string>
    <d2p1:string>Surname</d2p1:string>
</Column>
<Dates>29-04-2016, 00:00:00 - 29-04-2016, 23:59:59</Dates>
<Id>1200</Id>
<Row>
    <APIReportRow>
        <Cell xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d4p1:string>Francesco</d4p1:string>
            <d4p1:string>Delolli</d4p1:string>
        </Cell>
    </APIReportRow>
    <APIReportRow>
        <Cell xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d4p1:string>Roberto</d4p1:string>
            <d4p1:string>Delolli</d4p1:string>
        </Cell>
    </APIReportRow>
</Row>
<Title>Nomi</Title>

所以我尝试使用SimpleXML在PHP中解析它,使用这个简单的代码:

$xml = simplexml_load_string($xmlstring);
print_r($xml);

Cell值为空:

SimpleXMLElement Object
(
    [Column] => SimpleXMLElement Object
        (
        )

    [Dates] => 29-04-2016, 00:00:00 - 29-04-2016, 23:59:59
    [Id] => 1200
    [Row] => SimpleXMLElement Object
        (
            [APIReportRow] => Array
                (
                    [0] => SimpleXMLElement Object
                        (
                            [Cell] => SimpleXMLElement Object
                                (
                                )

                        )

                    [1] => SimpleXMLElement Object
                        (
                            [Cell] => SimpleXMLElement Object
                                (
                                )

                        )

                )

        )

    [Title] => Nomi
)

我的问题很简单:如何获取XML的Cell值?

1 个答案:

答案 0 :(得分:0)

感谢@IMSoP,我得到了解决方案:

$xml = simplexml_load_string($xmlstring);
$rows = $xml->Row->APIReportRow;
foreach ($rows as $row) {
    $cell = $row->Cell->children('d4p1', true);
    echo "Name: " . (string) $cell->string[0] . "\n";
    echo "Surname: " . (string) $cell->string[1] . "\n";
}
相关问题