wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_convert_bytes_to_hr is deprecated since version 3.6.0!
Alternative: size_format()
Alternative: size_format()
wp_convert_bytes_to_hr › WordPress Function
Seit2.3.0
Veraltet3.6.0
› wp_convert_bytes_to_hr ( $bytes )
| Parameter: |
|
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Converts an integer byte value to a shorthand byte value.
Ähnliche Funktionen: wp_convert_hr_to_bytes, convert_to_screen, wp_count_sites, wp_count_terms, wp_insert_term
Quellcode
function wp_convert_bytes_to_hr( $bytes ) {
_deprecated_function( __FUNCTION__, '3.6.0', 'size_format()' );
$units = array( 0 => 'B', 1 => 'KB', 2 => 'MB', 3 => 'GB', 4 => 'TB' );
$log = log( $bytes, KB_IN_BYTES );
$power = ! is_nan( $log ) && ! is_infinite( $log ) ? (int) $log : 0;
$size = KB_IN_BYTES ** ( $log - $power );
if ( ! is_nan( $size ) && array_key_exists( $power, $units ) ) {
$unit = $units[ $power ];
} else {
$size = $bytes;
$unit = $units[0];
}
return $size . $unit;
}