价格变动时如何更改文字颜色?

时间:2017-02-22 11:29:41

标签: php

如果速率上升,如何将文本颜色更改为绿色,速率下降时如何将文本颜色更改为红色?以下是代码。

<?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');
?>

0 个答案:

没有答案