mirror of
https://gitee.com/ledc/IYUUAutoReseed
synced 2025-06-24 09:41:07 +00:00
重要更新:
1.hdhome、pthome、ourbits,加入新的辅种下载规则; 2.新增支持HDAI站点。 3.合作站验证参数,改为云端获取; 4.辅种检查参数,改为云端获取。
This commit is contained in:
@ -197,14 +197,14 @@ function convertToMB($from)
|
||||
|
||||
/**
|
||||
* 字节数Byte转换为KB、MB、GB、TB
|
||||
*
|
||||
* @param $num
|
||||
* @return string
|
||||
*/
|
||||
function getFilesize($num)
|
||||
{
|
||||
$p = 0;
|
||||
$format='bytes';
|
||||
if ($num>0 && $num<1024) {
|
||||
$p = 0;
|
||||
return number_format($num).' '.$format;
|
||||
}
|
||||
if ($num>=1024 && $num<pow(1024, 2)) {
|
||||
|
Reference in New Issue
Block a user