文件大小转换为人类友好格式

1.1 2022-03-07 20:06 UTC

This package is auto-updated.

Last update: 2024-09-29 13:09:21 UTC


README

Total Downloads Latest Stable Version License

Filesize

Filesize 工具允许用户确定各种格式的文件大小,为数据管理和分析提供关键信息。了解文件大小对于有效的存储规划、数据传输和资源分配至关重要。

"Buy Me A Coffee"

安装

composer require davidvandertuijn/filesize

使用方法

use Davidvandertuijn\Filesize;
Filesize::toHumanFriendly(
    1024000, // Bytes
    'kB', // Force Unit
    '%01.2f %s', // Format
    'SI' // Standard
);

SI标准(千字节中有1000字节)

Filesize::toHumanFriendly(1024000); // 1.02 MB

强制单位

Filesize::toHumanFriendly(1024000, 'kB'); // 1024.00 kB

格式

Filesize::toHumanFriendly(1024000, null, '%01.3f %s'); // 1.024 MB

IEC标准(千字节中有1024字节)

Filesize::toHumanFriendly(1048576, null, null, 'IEC'); // 1.00 MiB