올림/내림/반올림 > PHP

본문 바로가기

사이트 내 전체검색

뒤로가기 PHP

올림/내림/반올림

페이지 정보

작성자 최고관리자 작성일 21-02-09 11:48 조회 5,846 댓글 0

본문

출처 : http://apms.tistory.com/4

 ----------------------------------
 1. ceil() - 무조건 올림

$abc = 5.1;
 $result = ceil($abc);
 echo $result;
 ** 출력 **

6


 ----------------------------------
 2. floor() - 무조건 내림

$abc = 5.9;
 $result = floor($abc);
 echo $result;
 ** 출력 **
5


 ----------------------------------
 3. round() - 반올림

$abc = 5.6;
 $result = round($abc);
 echo $result;
 ** 출력 **
6

 $abc = 5.4;
 $result = round($abc);
 echo $result;
 ** 출력 **
5


 ----------------------------------
 4. abs 절대값

댓글목록 0

등록된 댓글이 없습니다.

Copyright © beautipia.co.kr. All rights reserved.

contact : webmaster@beautipia.co.kr

PC 버전으로 보기