wp_convert_bytes_to_hr

函数
wp_convert_bytes_to_hr ( $bytes )
参数
  • (int) $bytes An integer byte value.
    Required:
返回值
  • (string) A shorthand byte value.
相关
  • size_format()
定义位置
相关方法
wp_convert_hr_to_bytesconvert_to_screenwp_count_termswp_count_siteswp_insert_term
引入
2.3.0
弃用
3.6.0

wp_convert_bytes_to_hr: 这是一个将字节值转换为人类可读格式的函数。它可以用来以一种更可读的格式显示文件大小。

将一个整数的字节值转换为一个速记的字节值。

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;
}

常见问题

FAQs
查看更多 >