$xmlfile = "http://acp.ru.swtest.ru/xml.xml";
$xml = simplexml_load_string(file_get_contents($xmlfile));
// $xml = simplexml_load_file($xmlfile);
foreach($xml->offer as $offer) {
echo $offer->name,$offer->power,$offer->voltage;
}
$xml = simplexml_load_file($xmlfile);