Code:
$xml = file_get_contents($info);
echo $xml."<br>";
$doc = new DOMDocument();
$doc->load($xml);
$tones = $doc->getElementsByTagName("tones");
foreach($tones as $tone){
$tonecodes = $tone->getElementsByTagName("tonecode");
$tonecode = $tonecode->item(0)->nodeValue;
$tonenames = $tone->getElementsByTagName("tonename");
$tonename = $tonecode->item(0)->nodeValue;
$singers = $tone->getElementsByTagName("singer");
$singer = $tonecode->item(0)->nodeValue;
$prices = $tone->getElementsByTagName("price");
$price = $tonecode->item(0)->nodeValue;
echo "tonecode:".$tonecode."tonename:".$tonename."singer:".$singer."price:".$price."<br>";
}
错误提示:
Warning: DOMDocument::load() [domdocument.load]: I/O warning : failed to load external entity "/usr/local/apache2/htdocs/new/test/imusic/
请大家帮助一下,为什么我这样解析总是出现这样的错误,麻烦大家给指点一,谢谢!
