欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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];
}