- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要获取内部会计系统的历史汇率引用率列表。
这个问题仅与以下代码有关,如果您觉得它有用,请随意使用此代码(当然,一旦我们得到解决最终“小问题”的答案。我在代码中包含了一个 DB 结构转储,所有 DB例程被注释掉,现在只是回显调试数据。
数据取自欧洲中央银行 XML,网址为 http://www.ecb.europa.eu/stats/eurofxref/eurofxref-hist.xml
固定的!如果您需要将历史汇率值列表拉入数据库,请随意使用此代码..确保删除 echo 调试并整理数据库查询
<?php
/* DB structure:
CREATE TABLE IF NOT EXISTS `currency_rates_history` (
`id` int(4) NOT NULL auto_increment,
`currency` char(3) character set utf8 collate utf8_unicode_ci NOT NULL default '',
`rate` float NOT NULL default '0',
`date` int(4) NOT NULL default '0',
`est` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8_unicode_ci AUTO_INCREMENT=1 ;
*/
error_reporting(E_ALL);
$table = "currency_rates_history";
$secs = '86400';
$prev_date = time();
$days = "0";
$XML=simplexml_load_file("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-hist.xml"); // European Central Bank xml only contains business days! oh well....
foreach($XML->Cube->Cube as $time) // run first loop for each date section
{
echo "<h1>".$time["time"].'</h1>';
list($dy,$dm,$dd) = explode("-", $time["time"]);
$date = mktime(8,0,0,$dm,$dd,$dy);
echo ($prev_date - $date)."<br />";
if(($prev_date - $date) > $secs) // detect missing weekend and bank holiday values.
{
echo "ooh"; // for debug to search the output for missing days
$days =(round((($prev_date - $date)/$secs),0)-1); // got to remove 1 from the count....
echo $days; // debug, will output the number of missing days
}
foreach($time->Cube as $_rate) // That fixed it! run the 2nd loop and ad enter the new exchange values....
{
$rate = floatval(str_replace(",", ".", $_rate["rate"]));
if($days > 0) // add the missing dates using the last known value, coul dbe more accurate but at least there is some reference data to work with
{
$days_cc = $days; // need to keep $days in mem for the next currency
while($days_cc > 0)
{
echo $rate;
echo date('D',$date+($days_cc*$secs))."<br />";
/*
mysql_query("LOCK TABLES {$table} WRITE");
mysql_query("INSERT INTO {$table}(rate,date,currency,est) VALUES('{$rate}','".($date+($days_cc*$secs))."','{$currency}','1')");
mysql_query("UNLOCK TABLES");
*/
$days_cc = ($days_cc - 1); // count down
}
}
$currency = addslashes(strtolower($_rate["currency"]));
/*
mysql_query("LOCK TABLES {$table} WRITE");
// mysql_query("UPDATE {$table} SET rate='{$rate}',date='{$date}' WHERE currency='{$currency}' AND date='{$date}'"); // all this double checking was crashing the script
// if (mysql_affected_rows() == 0)
// {
mysql_query("INSERT INTO {$table}(rate,date,currency) VALUES('{$rate}','{$date}','{$currency}')"); // so just insert, its only going to be run once anyway!
// }
mysql_query("UNLOCK TABLES");
*/
echo "1€= ".$currency." ".$rate.", date: ".date('D d m Y',$date)."<br/>";
}
$days=""; // clear days value
$prev_date = $date; // store the previous date
}
echo "<h1>Currencies Saved!</h1>";
?>
最佳答案
$XML->Cube->Cube->Cube
在第二个循环中:$XML->Cube->Cube
总是指第一个二级cube
在第一级cube
.所以你正在迭代第三级 cubes
在同一个元素中。因此,您只得到今天的费率。有道理?
试试这个。我已经修改了您的命令行输出代码,而不是 html。唯一的主要变化是在第二个 foreach
陈述...
$XML=simplexml_load_file("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-hist.xml");
foreach($XML->Cube->Cube as $time){
echo "----".$time["time"]. "----\n";
foreach($time->Cube as $_rate){
$rate = floatval(str_replace(",", ".", $_rate["rate"]));
$currency = addslashes(strtolower($_rate["currency"]));
echo "1 euro = ".$currency." ".$rate . "\n";
}
echo "------------------\n\n";
}
echo "Done!";
关于php - 在用 XML 提取 XML 中的欧洲央行汇率时遇到一些麻烦.. 有问题的完整源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7127144/
我正在为我的小型众筹网站实现 paypal 自适应支付,我发现实际上 Paypal 并没有为非美国开发者提供选择。 https://developer.paypal.com/webapps/devel
这个奇怪的问题出现在 ios 8 版本中。这是示例代码: NSDate * date = [NSDate dateWithTimeIntervalSince1970:1414785600]; date
我正在寻找一个表格或启发式库,可以将扩展字符(如带有帽子的 o)转换为常规的 ascii o。 我希望这样做是为了搜索索引目的,因为大多数人不会在帽子上输入 o。 例如,我在搜索中输入“Cote”,但
自上周末英国在我的 Centos 5.8 KVM 虚拟机上更改为英国夏令时 (BST) 以来,我真的很难处理我的时钟。 这是一些命令输出.. [root@host ~]# TZ=Europe/
对于我们的俄罗斯租户,我们使用“欧洲/莫斯科”时区。但是我们比正确时间早了 1 小时。 欧洲/莫斯科是 UTC+3 小时。但是当我打印日期格式为欧洲/莫斯科时区时,会比正确时间提前 1 小时。 谢谢,
我正在尝试让 zipline 处理非美国的日内数据,我已将其加载到 Pandas DataFrame 中: BARC HSBA LLOY
我有一个我支持的旧版 VB6 应用程序,它使用 MapPointControl.ocx。客户说它不适用于 Mappoint 2009。 谷歌搜索后,似乎欧洲添加的 Mappoint 带有一个坏的 OC
如何使用 Joda-Time 解析日期字符串datetime 使用正确的时区和夏令时? 作为 scala 中的示例,我尝试解析字符串“2014-04-07 01:00:00.000”(没有时区信息)。
我已经按照那里的 wiki.guide http://wiki.openstreetmap.org/wiki/Nominatim/Installation 在我本地的 centOS 6.6 机器上安装
我正在尝试两种不同的方法来确定 NodaTime 的夏令时: now = SystemClock.Instance.GetCurrentInstant Dim nowInIsoUtc As Strin
为什么我无法解析以下日期? DateTime.parse("2015-03-29 02:35:00", DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss")
我正在尝试将 UTC 时间戳转换为西类牙时区的时间戳。 >>> import datetime as dt >>> import pytz >>> today = dt.datetime.utcfro
我是一名优秀的程序员,十分优秀!