PHP code example of withinboredom / bytes

1. Go to this page and download the library: Download withinboredom/bytes library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

withinboredom / bytes example snippets


$kb = \Withinboredom\Bytes\Kilobytes(128)->multiply(1000);
$mb = \Withinboredom\Bytes\Megabytes(125);
$tb = \Withinboredom\Bytes\Terrabytes(1);

$arr = [$kb, $mb, $tb];
// sort the array
usort($arr, \Withinboredom\Bytes\Bytes::compare(...));

// values with the same units are always triple-equal to each other
assert($kb->megabytes() === $mb);

// values with the same units are always natively comparable
assert($mb < $tb->megabytes());

// you can always expect a certain unit
function test(\Withinboredom\Bytes\Megabytes $megabytes): void;

// or convert them to your expected unit in your body
function test(\Withinboredom\Bytes\DataUnit $size): void;

// get base-2 sized values
echo $kb->getBinaryValue();

// or si-units
echo $kb->getSiValue();