10k, 1k등 숫자를 표기하기 위한 함수
[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]
필요해서 한번 만들어 보았습니다.
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4556 | jQuery |
프로그래머7
|
8년 전 | 1690 | |
| 4555 | jQuery |
프로그래머7
|
8년 전 | 1608 | |
| 4554 | jQuery |
프로그래머7
|
8년 전 | 1661 | |
| 4553 | jQuery |
프로그래머7
|
8년 전 | 2040 | |
| 4552 | PHP | 8년 전 | 1879 | ||
| 4551 | PHP | 8년 전 | 1464 | ||
| 4550 | PHP | 8년 전 | 1706 | ||
| 4549 | jQuery |
프로그래머7
|
8년 전 | 2743 | |
| 4548 | jQuery |
프로그래머7
|
8년 전 | 1440 | |
| 4547 | jQuery |
프로그래머7
|
8년 전 | 1366 | |
| 4546 | jQuery |
프로그래머7
|
8년 전 | 1683 | |
| 4545 | jQuery |
프로그래머7
|
8년 전 | 1709 | |
| 4544 | jQuery |
프로그래머7
|
8년 전 | 1863 | |
| 4543 | jQuery |
프로그래머7
|
8년 전 | 1651 | |
| 4542 | jQuery |
프로그래머7
|
8년 전 | 1583 | |
| 4541 | jQuery |
프로그래머7
|
8년 전 | 1632 | |
| 4540 | jQuery |
프로그래머7
|
8년 전 | 1665 | |
| 4539 | jQuery |
프로그래머7
|
8년 전 | 1862 | |
| 4538 | jQuery |
프로그래머7
|
8년 전 | 1535 | |
| 4537 | jQuery |
프로그래머7
|
8년 전 | 1695 | |
| 4536 | jQuery |
프로그래머7
|
8년 전 | 1933 | |
| 4535 | jQuery |
프로그래머7
|
8년 전 | 1519 | |
| 4534 | jQuery |
프로그래머7
|
8년 전 | 1854 | |
| 4533 | jQuery |
프로그래머7
|
8년 전 | 2343 | |
| 4532 | jQuery |
프로그래머7
|
8년 전 | 1914 | |
| 4531 | PHP |
|
8년 전 | 3708 | |
| 4530 | jQuery |
프로그래머7
|
8년 전 | 1799 | |
| 4529 | jQuery |
프로그래머7
|
8년 전 | 1898 | |
| 4528 | jQuery |
프로그래머7
|
8년 전 | 1695 | |
| 4527 | jQuery |
|
8년 전 | 2696 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기