[Frequency Library] Added hz_to_mhz function to the library as its used a lot in Cloudlog

这个提交包含在:
Peter Goodhall 2021-05-06 15:34:30 +01:00
父节点 d6782e53e5
当前提交 422fbd4490

查看文件

@ -154,5 +154,11 @@ class Frequency {
}
return $Band;
}
// converts a frequency in Hz to MHz output
function hz_to_mhz($frequency)
{
return number_format (($frequency / 1000 / 1000), 3) . " MHz";
}
}
/* End of file Frequency.php */