Your IP : 172.28.240.42


Current Path : /var/www/html/clients/amz.e-nk.ru/bitrix/modules/perfmon/
Upload File :
Current File : /var/www/html/clients/amz.e-nk.ru/bitrix/modules/perfmon/prolog.php

<?
if(file_exists($_SERVER["DOCUMENT_ROOT"].BX_PERSONAL_ROOT."/php_interface/geshi/geshi.php"))
	require_once($_SERVER["DOCUMENT_ROOT"].BX_PERSONAL_ROOT."/php_interface/geshi/geshi.php");

function perfmon_SizeFormat($size)
{
	static $a = array("b", "Kb", "Mb", "Gb");
	$pos = 0;
	while($size >= 1024)
	{
		$size /= 1024;
		$pos++;
	}
	return round($size,2)." ".$a[$pos];
}

function perfmon_NumberFormat($num, $dec=2, $html=true)
{
	$str = number_format($num, $dec, ".", " ");
	if($html)
		return str_replace(" ", "&nbsp;", $str);
	else
		return $str;
}
?>