Skip to content

consilience/human-readable-file-size

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Human readable file size

This PHP 7 library, strongly inspired by Jeffrey Sambells' blog post, computes a size in bytes in a human readable form.

Installation

This library is available through Packagist and can be installed using Composer:

composer require codeinc/human-readable-file-size

Usage

Simple usage

<?php
use CodeInc\HumanReadableFileSize\HumanReadableFileSize;

echo HumanReadableFileSize::getHumanSize(filesize('a-file.pdf'));
// outputs 2.88MB 

echo HumanReadableFileSize::getHumanSize(filesize('a-file.pdf'), 1);
// outputs 2.9MB 

echo HumanReadableFileSize::getHumanSize(filesize('a-file.pdf'));
// outputs 3MB

Full configuration usage

<?php
use CodeInc\HumanReadableFileSize\HumanReadableFileSize;

$readableSize = new HumanReadableFileSize();
$readableSize->useNumberFormatter('fr-FR');
$readableSize->setSpaceBeforeUnit();
$readableSize->setByteSymbol('o');
echo $readableSize->compute(filesize('a-file.pdf'), 1);
// outputs 2,9 Mo 

License

This library is published under the MIT license (see the LICENSE file).

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%