gpt4 book ai didi

用于货币转换的php脚本

转载 作者:可可西里 更新时间:2023-11-01 00:53:18 26 4
gpt4 key购买 nike

我正在寻找一个进行货币转换的 php 脚本。

在哪里可以找到适用于 codeigniter 的软件?

最佳答案

取自http://www.ecb.europa.eu/stats/exchange/eurofxref/html/index.en.html#dev

How to parse the data
This is just an example

<?php
//This is a PHP (4/5) script example on how eurofxref-daily.xml can be parsed

//Read eurofxref-daily.xml file in memory
$XMLContent= file("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");
//the file is updated daily between 2.15 p.m. and 3.00 p.m. CET

foreach ($XMLContent as $line) {
if (ereg("currency='([[:alpha:]]+)'",$line,$currencyCode)) {
if (ereg("rate='([[:graph:]]+)'",$line,$rate)) {
//Output the value of 1 EUR for a currency code
echo '1 &euro; = '.$rate[1].' '.$currencyCode[1].'<br />';
//--------------------------------------------------
// Here you can add your code for inserting
// $rate[1] and $currencyCode[1] into your database
//--------------------------------------------------
}
}
}
?>

不是最好的脚本,但话又说回来,你只是要求给我-teh-codez。

关于用于货币转换的php脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2635127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com