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



wp_convert_bytes_to_hr › WordPress Function

Since2.3.0
Deprecated3.6.0
wp_convert_bytes_to_hr ( $bytes )
Parameters:
  • (int) $bytes An integer byte value.
    Required: Yes
See:
Returns:
  • (string) A shorthand byte value.
Defined at:
Codex:

Converts an integer byte value to a shorthand byte value.



Source

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 = (int) $log;
	$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;
}