如何从SimpleXMLElement对象中检索信息

时间:2017-01-13 14:23:43

标签: php xml

我有一个对象

class SimpleXMLElement#3 (1) {
     public ${0} =>
     string(10) "idp:088853"
}

检索

$xml = file_get_contents($xml_file); 
$sxml = new SimpleXMLElemet($xml); 
$ids = $sxml->xpath('system-identifier');
foreach( $ids as $id) {
 //....
}

如何获取该字符串

0 个答案:

没有答案