2012-02-15 16 views

答えて

0

あなたはああ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 
} 
+0

ありがとう、私の問題を解決しました。 ;) – user1210746

関連する問題