Önceden merkez bankası sitesinden xml ile
simplexml_load_file('http://www.tcmb.gov.tr/kurlar/today.xml');ile çekiyorduk fakat bugünden itibaren hata veriyor sebebi nedir ?Teşekkürler.

SORUNU ÇÖZDÜM
$icerik = file_get_contents("https://www.tcmb.gov.tr/kurlar/today.xml");
$connect_web = simplexml_load_string($icerik);
$usd_buying = $connect_web->Currency[0]->BanknoteBuying;
$usd_selling = $connect_web->Currency[0]->BanknoteSelling;Önceden direk xml_load ile çekiliyordu fakat önce file_gete sokup gelen dataya xmle çevirince sorun çözüldü.