Changeset 35325 for trunk/src/wp-includes/functions.php
- Timestamp:
- 10/21/2015 02:02:59 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r35288 r35325 211 211 function size_format( $bytes, $decimals = 0 ) { 212 212 $quant = array( 213 // ========================= Origin ==== 214 'TB' => 1099511627776, // pow( 1024, 4) 215 'GB' => 1073741824, // pow( 1024, 3) 216 'MB' => 1048576, // pow( 1024, 2) 217 'kB' => 1024, // pow( 1024, 1) 218 'B' => 1, // pow( 1024, 0) 213 'TB' => TB_IN_BYTES, 214 'GB' => GB_IN_BYTES, 215 'MB' => MB_IN_BYTES, 216 'kB' => KB_IN_BYTES, 217 'B' => 1, 219 218 ); 220 219
Note: See TracChangeset
for help on using the changeset viewer.