我正在尝试在我的项目中实现这个 Google Finance Converter。我实现了它,然后它工作正常。但是今天,当我重新检查我的应用程序以确保一切正常时,我发现 Google Finance Converter API 无法正常工作并且还返回错误。
PHP 代码
/*********** Google Finance API ************/
$from_Currency = "USD";
$to_Currency = "INR";
$encode_amount = $amount;
$get = file_get_contents("http://finance.google.com/finance/converter?a=$encode_amount&from=$from_Currency&to=$to_Currency");
$get = explode("<span class=bld>",$get);
$get = explode("</span>",$get[1]);
$converted_currency = preg_replace("/[^0-9\.]/", null, $get[0]);
/*********** End Google Finance API ************/
它返回类似 Undefined offset: 1
完整的错误代码
Notice: Undefined offset: 1 in E:\xampp\htdocs\sites\redapple\gateways\payumoney\payumoney.php on line 31
在我的代码中,这一行代表第 31 行
$get = explode("</span>",$get[1]);
请帮忙。