wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_convert_hr_to_bytes › WordPress Function

Seit2.3.0
Veraltetn/v
wp_convert_hr_to_bytes ( $value )
Parameter:
  • (string) $value A (PHP ini) byte value, either shorthand or ordinary.
    Erforderlich: Ja
Links:
Gibt zurück:
  • (int) An integer byte value.
Definiert in:
Codex:
Changelog:
  • 4.6.0

Converts a shorthand byte value to an integer byte value.



Quellcode

function wp_convert_hr_to_bytes( $value ) {
	$value = strtolower( trim( $value ) );
	$bytes = (int) $value;

	if ( str_contains( $value, 'g' ) ) {
		$bytes *= GB_IN_BYTES;
	} elseif ( str_contains( $value, 'm' ) ) {
		$bytes *= MB_IN_BYTES;
	} elseif ( str_contains( $value, 'k' ) ) {
		$bytes *= KB_IN_BYTES;
	}

	// Deal with large (float) values which run into the maximum integer size.
	return min( $bytes, PHP_INT_MAX );
}