سؤال

I don't understand how I can read tags, from a metadata.xml of a cdr files. Thanks for any help.

هل كانت مفيدة؟

المحلول

You need DOMDocument oh 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
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top