Размер файла: 1.97Kb
<?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 H:i:s');
print '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet"type="text/css" href="style.css">
<title>Курс валют центрбанка на '.$rf.'</title>
</head>
<body>
<p align="center"><img src="logo.png" alt=""></p><br>
<div class="gg">
'.$rf.'
</div>
<br>Курс валют от Центрбанка</a> РФ<br>
<div class="gg">
1 USD » '.$dollar.' руб
</div><div class="gg">
1 EURO » '.$euro.' руб<br>
</div>
</body>
</html>';
include_once '../../sys/inc/tfoot.php';
?>