/************************************************
퍼센트
************************************************/
function GetPercent($val,$total)
{
if($val)
{
return ($val/$total)*100;
}else
{
return 0;
}
}
/************************************************
전체 값에서 퍼센트에 해당하는 값을 뺀 값
************************************************/
function GetDepercentRemain($per,$total)
{
return $total-(($per/100)*$total);
}
/************************************************
퍼센트에 해당하는 값
************************************************/
function GetDepercent($per,$total)
{
return ($per/100)*$total;
}
/************************************************
전체 값
************************************************/
function GetTotalPercent($per,$val)
{
return ($val/$per)*100;
}
퍼센트
************************************************/
function GetPercent($val,$total)
{
if($val)
{
return ($val/$total)*100;
}else
{
return 0;
}
}
/************************************************
전체 값에서 퍼센트에 해당하는 값을 뺀 값
************************************************/
function GetDepercentRemain($per,$total)
{
return $total-(($per/100)*$total);
}
/************************************************
퍼센트에 해당하는 값
************************************************/
function GetDepercent($per,$total)
{
return ($per/100)*$total;
}
/************************************************
전체 값
************************************************/
function GetTotalPercent($per,$val)
{
return ($val/$per)*100;
}
'PHP' 카테고리의 다른 글
날짜,시간 포맷,계산 관련 함수 (0) | 2008.12.13 |
---|---|
php4 이하에서의 scandir (0) | 2008.12.13 |
배열<->쿠키 (0) | 2008.12.13 |
getIconv($fromchar,$tochar,$str) - $str:문자열/배열 (0) | 2008.12.13 |
php4 에서의 stripos(), str_ireplace() (0) | 2008.12.13 |