Файл: public_html/sv/kurs/index.php
Строк: 62
<?php
include_once '../../sys/inc/start.php';
include_once '../../sys/inc/compress.php';
include_once '../../sys/inc/sess.php';
include_once '../../sys/inc/home.php';
include_once '../../sys/inc/settings.php';
include_once '../../sys/inc/db_connect.php';
include_once '../../sys/inc/ipua.php';
include_once '../../sys/inc/fnc.php';
include_once '../../sys/inc/user.php';
$set['title']='Курс валют';
include_once '../../sys/inc/thead.php';
title();
err();
aut();
//error_reporting(0);
//header('Cache-control: no-cache');
//header('Content-type: text/html; charset=utf-8');
$content = get_content();
$pattern = "#<Valute ID="([^"]+)[^>]+>[^>]+>([^<]+)[^>]+>[^>]+>[^>]+>[^>]+>[^>]+>[^>]+>([^<]+)[^>]+>[^>]+>([^<]+)#i";
preg_match_all($pattern, $content, $out, PREG_SET_ORDER);
$dollar = $euro = '';
foreach($out as $cur)
{
if($cur[2] == 840) $dollar = str_replace(',','.',$cur[4]);
if($cur[2] == 978) $euro = str_replace(',','.',$cur[4]);
}
function get_content()
{
// Формируем сегодняшнюю дату
$link = 'http://www.cbr.ru/scripts/XML_daily.asp?date_req='.date('d/m/Y');
$text = '';
$fd = fopen($link, 'r');
if(!$fd) echo 'Запрашиваемая страница не найдена';
else
{
while(!feof ($fd)) $text .= fgets($fd, 4096);
}
fclose($fd);
return $text;
}
$rf = date('d.m.Y');
echo'<div class="z">
Курс валют на '.$rf.':</div>
<div class="p_m">1 USD: '.$dollar.' руб
</div>
<div class="menu">1 EURO: '.$euro.' руб</div>
';
echo '<div class="foot"><a href="/sv/"><img src="/style/ank_img/check.png" alt="" /> Назад в сервисы</a></div>';
include_once '../../sys/inc/tfoot.php';
?>