Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




size_format [ WordPress Function ]

size_format ( $bytes, $decimals = 0 )
Parameters:
  • (int|string) $bytes Number of bytes. Note max integer size for integers.
  • (int) $decimals Precision of number of decimal places. Deprecated.
Links:
Returns:
  • (bool|string) False on failure. Number string on success.
Defined at:



Convert number of bytes largest unit bytes will fit into.

It is easier to read 1kB than 1024 bytes and 1MB than 1048576 bytes. Converts number of bytes to human readable number by taking the number of that unit that the bytes will go into it. Supports TB value.

Please note that integers in PHP are limited to 32 bits, unless they are on 64 bit architecture, then they have 64 bit size. If you need to place the larger size then what PHP integer type will hold, then use a string. It will be converted to a double, which should always have 64 bit length.

Technically the correct unit names for powers of 1024 are KiB, MiB etc.

Source


<?php
function size_format$bytes$decimals ) {
    
$quant = array(
        
// ========================= Origin ====
        
'TB' => 1099511627776,  // pow( 1024, 4)
        
'GB' => 1073741824,     // pow( 1024, 3)
        
'MB' => 1048576,        // pow( 1024, 2)
        
'kB' => 1024,           // pow( 1024, 1)
        
'B ' => 1,              // pow( 1024, 0)
    
);
    foreach ( 
$quant as $unit => $mag )
        if ( 
doubleval($bytes) >= $mag )
            return 
number_format_i18n$bytes $mag$decimals ) . ' ' $unit;

    return 
false;
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

Kullanýcý Tartýþmalarý [ wordpress.org ]

- Bulunamadý -

Yeni bir konu yaz ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics