function Bytes::toNumber
Same name in other branches
- 10 core/lib/Drupal/Component/Utility/Bytes.php \Drupal\Component\Utility\Bytes::toNumber()
- 11.x core/lib/Drupal/Component/Utility/Bytes.php \Drupal\Component\Utility\Bytes::toNumber()
Parses a given byte size.
Parameters
int|float|string $size: An integer, float, or string size expressed as a number of bytes with optional SI or IEC binary unit prefix (e.g. 2, 2.4, 3K, 5MB, 10G, 6GiB, 8 bytes, 9mbytes).
Return value
float The floating point value of the size in bytes.
14 calls to Bytes::toNumber()
- Bytes::toInt in core/
lib/ Drupal/ Component/ Utility/ Bytes.php - Parses a given byte size.
- BytesTest::testToNumber in core/
tests/ Drupal/ Tests/ Component/ Utility/ BytesTest.php - Tests \Drupal\Component\Utility\Bytes::toNumber().
- CKEditor5ImageController::upload in core/
modules/ ckeditor5/ src/ Controller/ CKEditor5ImageController.php - Uploads and saves an image from a CKEditor 5 POST.
- color_scheme_form_submit in core/
modules/ color/ color.module - Form submission handler for color_scheme_form().
- EditorImageDialog::buildForm in core/
modules/ editor/ src/ Form/ EditorImageDialog.php
File
-
core/
lib/ Drupal/ Component/ Utility/ Bytes.php, line 91
Class
- Bytes
- Provides helper methods for byte conversions.
Namespace
Drupal\Component\UtilityCode
public static function toNumber($size) : float {
// Remove the non-unit characters from the size.
$unit = preg_replace('/[^bkmgtpezy]/i', '', $size);
// Remove the non-numeric characters from the size.
$size = preg_replace('/[^0-9\\.]/', '', $size);
if ($unit) {
// Find the position of the unit in the ordered string which is the power
// of magnitude to multiply a kilobyte by.
return round($size * pow(self::KILOBYTE, stripos('bkmgtpezy', $unit[0])));
}
else {
// Ensure size is a proper number type.
return round((double) $size);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.