10k, 1k등 숫자를 표기하기 위한 함수

· 2017-03-18 (토) 15:42:34 · 4393

[code] 

/**

 * 숫자를 지정된 자리수의 숫자로 변경 한다. 2017-03-18 LDD

 *

 * @param      integer  $Num      숫자

 * @param      integer  $EPx      표현할 자리수

 * @param      integer  $Decimal  표현할 소스점 (지정 소수점 이하는 버름)

 * @param      integer  $Dtype  소수점이하 처리 방법(A: 버림, R: 올림)

 *

 * @return     integer  결과 숫자

 *

 * @Example

 * NumberEPX($Num=10000, $EPx=4, $Decimal=0, $Dtype='A') => 1

 * NumberEPX($Num=12500, $EPx=4, $Decimal=1, $Dtype='A') => 1.2

 * NumberEPX($Num=12500, $EPx=4, $Decimal=2, $Dtype='A') => 1.25

 * NumberEPX($Num=12500, $EPx=3, $Decimal=1, $Dtype='A') => 12

 * NumberEPX($Num=55555, $EPx=4, $Decimal=0, $Dtype='R') => 6

 * NumberEPX($Num=55555, $EPx=4, $Decimal=1, $Dtype='R') => 5.6

 * NumberEPX($Num=55555, $EPx=4, $Decimal=2, $Dtype='R') => 5.56

 * NumberEPX($Num=55555, $EPx=3, $Decimal=1, $Dtype='R') => 55.6

 * 

 */

function NumberEPX($Num=0, $EPx=3, $Decimal=1, $Dtype='A') {

$pow = pow(10, $EPx);

$price = (float)$Num/$pow;

if($Dtype == 'A') $price = floor($price*(pow(10, $Decimal)))/(pow(10, $Decimal));

else $price = round($price, $Decimal);

return $price;

}

[/code]

 

필요해서 한번 만들어 보았습니다.

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 17-03-18 조회 2,793
jQuery 17-03-18 조회 2,373
PHP 17-03-18 조회 4,394
jQuery 17-03-17 조회 2,245
jQuery 17-03-17 조회 2,293
jQuery 17-03-17 조회 2,146
jQuery 17-03-17 조회 3,150
PHP 17-03-16 조회 2,409
PHP 17-03-16 조회 2,241
PHP 17-03-16 조회 2,448
기타 17-03-16 조회 1.6만
OS 17-03-16 조회 3,524
jQuery 17-03-15 조회 2,579
jQuery 17-03-15 조회 2,647
jQuery 17-03-15 조회 2,750
jQuery 17-03-14 조회 2,547
jQuery 17-03-14 조회 2,667
jQuery 17-03-14 조회 3,628
PHP 17-03-13 조회 2,587
PHP 17-03-13 조회 2,382
PHP 17-03-13 조회 2,651
PHP 17-03-11 조회 2,374
PHP 17-03-11 조회 3,056
PHP 17-03-11 조회 2,727
jQuery 17-03-11 조회 2,722
jQuery 17-03-11 조회 2,821
jQuery 17-03-11 조회 2,243
jQuery 17-03-10 조회 2,250
jQuery 17-03-10 조회 2,252
jQuery 17-03-10 조회 2,623