• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/builder/attach.php
  • Класс: BitrixCalendarICalBuilderAttach
  • Вызов: Attach::getFormatSize
public function getFormatSize($precision = 2): string
{
	$suffix = array('b', 'Kb', 'Mb', 'Gb', 'Tb');
	$pos = 0;
	$size = $this->size;
	while($size >= 1024 && $pos < 4)
	{
		$size /= 1024;
		$pos++;
	}

	return round($size, $precision) . ' ' . $suffix[$pos];
}