function download_page($path){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$path);
curl_setopt($ch, CURLOPT_FAILONERROR,1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
//здесь указываета логин и пароль
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Authorization: Basic ".$login.' '.$password,);
$retValue = curl_exec($ch);
curl_close($ch);
return $retValue;
}
$sXML = download_page('
https://b2b.promediaplus.pl/en/xml/shop_integration.xml');
$oXML = new SimpleXMLElement($sXML);
foreach($oXML->entry as $oEntry){
echo $oEntry->title . "\n";
}