• Модуль: perfmon
  • Путь к файлу: ~/bitrix/modules/perfmon/classes/general/measure.php
  • Класс: CPerfAccel
  • Вызов: CPerfAccel::unformat
static function unformat($str)
{
	$str = mb_strtolower($str);
	$res = intval($str);
	$suffix = mb_substr($str, -1);
	if ($suffix == "k")
	{
		$res *= 1024;
	}
	elseif ($suffix == "m")
	{
		$res *= 1048576;
	}
	elseif ($suffix == "g")
	{
		$res *= 1048576 * 1024;
	}

	return $res;
}