PHP - SimpleXML中子节点中的命名空间转换疑难解答

时间:2018-01-26 16:49:08

标签: php xml xpath simplexml xml-namespaces

我正在使用SimpleXML和XPath来尝试获取子节点(' IndexEntry)属性的值(' indexKey')。节点的命名空间,我已在另一个节点上成功测试('记录')。 出于某种原因,此节点的属性(' indexKey')未返回。我已尝试使用children方法访问节点,同时指定其名称空间。

PHP代码

<?php
$url = "test_bb.xml";


$xml = simplexml_load_file($url);

$xml->registerXPathNamespace('a','http://www.digitalmeasures.com/schema/data');
$xml->registerXPathNamespace('dmd','http://www.digitalmeasures.com/schema/data-metadata');

$xml_report_abbrev_bb = $xml->xpath('//a:Record[@username="john-smith"]');

if($xml_report_abbrev_bb){
    echo '<br>CONTYPE is...'.$xml_report_abbrev_bb[0]->INTELLCONT->CONTYPE;
    echo '<br>termId is...'.$xml_report_abbrev_bb[0]['termId'].'<br>';
    echo '<br>surveyId is...'.$xml_report_abbrev_bb[0]->attributes('dmd',true)['surveyId'].'<br>';

//below - I've tried different methods of accessing the IndexEntry node...
    $dmd_fields = $xml_report_abbrev_bb[0]->children('dmd',true);
    echo '<br>dmd:IndexEntry is...'.$dmd_fields->IndexEntry['indexKey'].'<br>';

    echo '<br>dmd:IndexEntry is...'.$xml_report_abbrev_bb[0]->children('dmd',true)->IndexEntry['indexKey'].'<br>';

    //echo '<br>dmd:IndexEntry is...'.$xml_report_abbrev_bb[0]->IndexEntry('dmd',true)['indexKey'].'<br>';

    //echo '<br>dmd:IndexEntry is...'.$xml_report_abbrev_bb[0]->xpath('/dmd:indexEntry[@indexKey]')[0].'<br>';


} else {
    echo 'XPath query failed b';  
}

?>

XML(&#39; test_bb.xml&#39;)

<?xml version="1.0" encoding="UTF-8"?>
<Data xmlns="http://www.digitalmeasures.com/schema/data" xmlns:dmd="http://www.digitalmeasures.com/schema/data-metadata" dmd:date="2012-01-03">
    <Record userId="148" username="john-smith" termId="4" dmd:surveyId="12">
        <dmd:IndexEntry indexKey="D" entryKey="Dylan" text="Dylan"/>
        <INTELLCONT id="14" dmd:originalSource="54TEX" dmd:lastModified="2017-04-18T10:54:29" dmd:startDate="2011-01-01" dmd:endDate="2011-12-31">
            <CONTYPE>Sales Tools</CONTYPE>
            <CONTYPEOTHER>Sales History</CONTYPEOTHER>
            </INTELLCONT>
    </Record>
</Data>

2 个答案:

答案 0 :(得分:1)

在第

$dmd_fields = $xml_report_abbrev_bb[0]->children('dmd', true);

这意味着$dmd_fields将是一个节点列表,即使列表中只有一个节点 - 因此请使用$dmd_fields[0]来引用<dmd:IndexEntry>元素。由于这是IndexEntry元素,只需使用此元素和该元素的列表属性即可...

echo '<br>dmd:IndexEntry is...'.$dmd_fields[0]->attributes()['indexKey'].'<br>';

答案 1 :(得分:1)

虽然IndexEntry元素位于http://www.digitalmeasures.com/schema/data-metadata命名空间中,如本地前缀dmd:所示,但其属性没有前缀

<dmd:IndexEntry indexKey="D" entryKey="Dylan" text="Dylan"/>

本文档中的未加前缀的元素位于http://www.digitalmeasures.com/schema/data命名空间中,如根节点上的xmlns=属性中所指定。

但是作为discussed on this question,XML命名空间规范说明属性永远不会出现在默认命名空间中。这特别是在 no namespace 中,所以要使用SimpleXML访问它们,你必须选择URI为空字符串的命名空间:

$dmd_fields->IndexEntry->attributes('')->indexKey;