1

我不明白如何从cdr files的 metadata.xml 读取标签。谢谢你的帮助。

4

1 回答 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 回答