如果速率上升,如何将文本颜色更改为绿色,速率下降时如何将文本颜色更改为红色?以下是代码。
<?php
function currencyCnv($amount, $from, $to) {
$get = file_get_contents("https://www.google.com/finance/converter?a=$amount&from=" . $from. "&to=" . $to);
$get = explode("<span class=bld>",$get);
$get = explode("</span>",$get[1]);
$converted_amount = $get[0];
echo round($converted_amount,4);
}
echo currencyCnv(1,'BTC','USD');
?>