0

使用 SimpleXML 解析 XML 文件时,我遇到了一个问题,实际上是 freemind 映射。

XML 示例:

<map version="1.0.1">
<node TEXT="str_1">
    <node TEXT="str_2">
        <node TEXT="str_3"/>
        <node TEXT="str_4">
            <node TEXT="str_5">
                <node TEXT="str_6"/>
            </node>
            <node TEXT="$ str_7"/>
            <node TEXT="str_8"/>
            <node TEXT="$ str_9"/>
        </node>
    </node>
    <node TEXT="str_10"/>
    <node TEXT="str_11"/>
    <node TEXT="$ str_12"/>
</node>
</map>

通过以下代码,我可以获得所有孩子:

function print_node_info($father, $node)
{

        $output_xml = $node['TEXT'].' - Son of - '.$father.'</br>';

        echo $output_xml;

            // $file = 'output.xml';
            // // Open the file to get existing content
            // $output_xml .= file_get_contents($file);
            // // Write the contents back to the file
            // file_put_contents($file, $output_xml);

                //echo 'father: ' . $father.'<br>';
                //echo 'node: ' . $node['TEXT'].'<br><br>';
                foreach ($node->children() as $childe_node)
                //foreach $xml->xpath("//node[last()]")[0]->attributes() as $Id)
                //foreach ($node as $childe_node) 
                {
                    $GLOBALS['grandfather'] = $father;
                    print_node_info($node['TEXT'], $childe_node);
                }   
}

$xml = simplexml_load_file('1.xml');

foreach ($xml->children() as $first_node) {
print_node_info("top_name", $first_node);
}

我想要得到的只是所有最后一个孩子的 TEXT 值,实际上是不包含孩子的节点。

任何帮助,将不胜感激

提前致谢!

4

1 回答 1

0

SimpleXMLElement::xpath使用and可以很容易地做到这一点array_map

$values = array_map(function($node) {
    return (string) $node['TEXT'];
}, $xml->xpath('//node[not(node)]'));

您可以看到,首先我们得到一个没有 children的节点数组,然后我们将每个节点转换为包含节点TEXT属性的字符串。

于 2014-05-14T14:59:41.940 回答