PHP 如何获取XML 标签的内容

发布网友 发布时间:2022-04-23 12:43

我来回答

2个回答

热心网友 时间:2023-08-02 19:53

用 simplexml_load_string()这个函数。。
然后把结果 var_mp一下 你就知道怎么用了

热心网友 时间:2023-08-02 19:53

test.xml
<?xml version="1.0" encoding="utf-8"?>
<crpUsers>
<crpuser YHID="12313331231321201" XM="李 欣" />
</crpUsers>

php:
$xml = new DOMDocument();
$xml->load('./test.xml');
$root = $xml->documentElement;
$nodes = $root->getElementsByTagName("crpuser");
$YHID = $nodes->item(0)->getAttribute('YHID');
$XM = $nodes->item(0)->getAttribute('XM');
echo $YHID,'<br>',$XM;

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com