Bunun için api/xml vb. veriye ihtiyacın var.
<?php

$xml = file_get_contents('http://www.tcmb.gov.tr/kurlar/today.xml');
$url = simplexml_load_string($xml);

$euro = (float)$url->Currency[3]->BanknoteSelling;

echo number_format(9 * $euro, 2);
?>