PHP与C#分别格式化文件大小的代码
程序员文章站
2022-05-14 13:22:06
php 版: 复制代码 代码如下: function format($size) { $sizetext = array(" b", " kb", " mb", " gb"...
php 版:
function format($size)
{
$sizetext = array(" b", " kb", " mb", " gb", " tb", " pb", " eb", " zb", " yb");
return round($size/pow(1024,($i=floor(log($size,1024)))),2).$sizetext[$i];
}
c# 版:
public string formatsize(long size)
{
if (size == 0) return "0";
string[] sizetext = new string[] { " b", " kb", " mb", " gb", " tb", " pb" };
int i = (int)math.floor(math.log(size, 1024));
return math.round(size / math.pow(1024, i), 2).tostring() + sizetext[i];
}
复制代码 代码如下:
function format($size)
{
$sizetext = array(" b", " kb", " mb", " gb", " tb", " pb", " eb", " zb", " yb");
return round($size/pow(1024,($i=floor(log($size,1024)))),2).$sizetext[$i];
}
c# 版:
复制代码 代码如下:
public string formatsize(long size)
{
if (size == 0) return "0";
string[] sizetext = new string[] { " b", " kb", " mb", " gb", " tb", " pb" };
int i = (int)math.floor(math.log(size, 1024));
return math.round(size / math.pow(1024, i), 2).tostring() + sizetext[i];
}
上一篇: css 滚动视差 之 水波纹效果
下一篇: php编写一个简单的路由类