소수점 표시 몇번째 이하 버림 > 기술자료

본문 바로가기

사이트 내 전체검색

소수점 표시 몇번째 이하 버림 > 기술자료

PHP 소수점 표시 몇번째 이하 버림

페이지 정보


본문

round는 당연히 안되고, number_format도 반올림합니다.
늘아침처럼님이 만드신 함수를 활용하면 명쾌하게 해결할수 있습니다.
 
<?php
$a = 31465.7 / 1000;
 
echo "original = ". $a ."<br /><br />";
 
echo "1-digit Decimal point = ". number_format($a,1) ."<br />";
echo "1-digit Decimal point = ". round_down($a,1) ."<br /><br />";
 
echo "2-digit Decimal point = ". number_format($a,2) ."<br />";
echo "2-digit Decimal point = ". round_down($a,2) ."<br /><br />";
 
echo "3-digit Decimal point = ". number_format($a,3) ."<br />";
echo "3-digit Decimal point = ". round_down($a,3) ."<br /><br />";
 
function round_down($num, $d = 0) {
  return sgn($num) * p_floor(abs($num), $d);
}
 
function p_floor($val, $d) {
  return floor($val * pow(10,$d))/pow(10,$d);
}
function sgn($x) {
  return $x ? ($x > 0 ? 1:-1) :0;
}
?>
 
결과
original = 31.4657
 
1-digit Decimal point = 31.5
1-digit Decimal point = 31.4
 
2-digit Decimal point = 31.47
2-digit Decimal point = 31.46
 
3-digit Decimal point = 31.466
3-digit Decimal point = 31.465
 
 
관련자료
http://everlikemorning.tistory.com/entry/PHP-소수점-표시몇번쨰-이하-버림 

댓글목록

등록된 댓글이 없습니다.


Total 196건 6 페이지
  • RSS
기술자료 목록
96
PHP   53105  2012-03-24 22:40 ~ 2012-03-31 00:00  
95
PHP   22776  2012-03-16 23:55 ~ 2014-12-28 00:00  
94
PHP   23771  2012-03-04 17:29  
93
PHP   22964  2012-03-04 17:09 ~ 2023-01-08 11:38  
92
PHP   28429  2012-03-01 21:47 ~ 2012-04-08 00:00  
91
PHP   16474  2012-02-11 08:05  
90
PHP   24544  2011-12-16 17:50 ~ 2017-12-01 23:10  
89
PHP   36629  2011-12-16 14:24  
88
PHP   15550  2011-12-16 11:56  
87
PHP   41088  2011-12-10 17:48 ~ 2011-12-17 00:00  
86
PHP   23210  2011-12-10 17:48  
85
PHP   19959  2011-11-28 08:46 ~ 2017-01-13 00:00  
84
PHP   16832  2011-08-15 20:08  
83
PHP   16284  2011-07-26 07:10  
82
PHP   29284  2011-06-12 20:30 ~ 2024-02-28 09:43  
81
PHP   30434  2011-04-20 19:59  
80
PHP   23500  2011-03-27 21:51  
79
PHP   20527  2011-02-24 16:10 ~ 2021-11-23 09:25  
78
PHP   28951  2010-09-24 20:57  
77
PHP   18352  2010-08-25 11:34  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2026 해피정닷컴. All Rights Reserved.