我不明白如何从cdr files的 metadata.xml 读取标签。谢谢你的帮助。
问问题
1049 次
1 回答
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
}
于 2012-02-15T08:40:12.137 回答