WMWW | Webmaster Forumu | Webmaster Platformu

Tam Versiyon: [PHP] File Size Calculator / Dosya Boyut Hesaplayıcı
Şu anda tam olmayan bir versiyonun içeriğine bakıyorsunuz. Tam versiyon'a bakınız.
PHP Kod:
function calcSize($bytes){
    $fsize $bytes;
    switch ($bytes):
        case $bytes 1024:
            $fsize $bytes .' B'; break;
        case $bytes 1048576:
            $fsize round($bytes 10242) .' KB'; break;
        case $bytes 1073741824:
            $fsize round($bytes 10485762) . ' MB'; break;
        case $bytes 1099511627776:
            $fsize round($bytes 10737418242) . ' GB'; break;
    endswitch;
    return $fsize;



Kullanımı:
PHP Kod:
echo calcSize(filesize("path/to/text.txt"));