如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
使用到的函数
pow(10, 4)==>10的4次方
round($size,2)四舍五入(变量,位数)
案例
<?php
header("content-type:text/html;chsrset=urf-8");
date_default_timezone_set("PRC");
function ws($size)
{
if ($size >= pow(10, 4)) {
$res = round($size / pow(10, 4),2);
$ext = 'W';
}elseif ($size >= pow(10, 3)) {
$res = round($size / pow(10, 3),2);
$ext = 'k';
}else{
$res = $size;
$ext = '';
}
return $res.$ext;
}
echo ws(9999);
?>