下面的代码在过去几个月的生产中运行良好。最近开始断了。
昨天它给出了file_get_contents
函数的 HTTP 错误问题。今天,在执行时它显示未定义的偏移量错误。
我不确定 Finance Google API 发生了什么变化。
public function getJPYtoUSDExchangeRate(){
$from = 'JPY';
$to = 'USD';
$amount = 1;
$data = file_get_contents("https://finance.google.com/finance/converter?a=$amount&from=$from&to=$to");
preg_match("/<span class=bld>(.*)<\/span>/",$data, $converted);
$converted = preg_replace("/[^0-9.]/", "", $converted[1][0]);
return number_format(round($converted, 3),2);
}