filesize-in-units-indelen

Gesponsorde koppelingen

PHP script bestanden

  1. filesize-in-units-indelen

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
    function unitize($bin, $units, $lastUnit=0) {
        if (($bin / 1024) > 1) {
            $lastUnit++;
            unitize($bin / 1024, $units, $lastUnit);
        }
else {
            echo round($bin, 2) . ' ' . $units[$lastUnit];
        }
    }
    
    function
getFileSize($bin) {
        $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');        
        unitize($bin, $units);
    }

    
    getFileSize(1000000000000000000000000/* quadriljoen bytes */);
?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.