我不明白如何从cdr files的metadata.xml中读取标签。谢谢你的帮助。
答案 0 :(得分:0)
你需要DOMDocument哦PHP5
$xml = new DOMDocument();
$xml->loadXML($xml_data); // $xml_data is the contents of metadata.xml
$tags = $xml->getElementsByTagName(""); // put your tag name here.
foreach($tags as $tag){
// further process the tags
}