PHP 에서 ceil, floor, round 의 차이점 > 개발

본문 바로가기

사이트 내 전체검색

뒤로가기 개발

PHP 에서 ceil, floor, round 의 차이점

페이지 정보

작성자 관리자 (61.♡.12.126) 작성일 16-08-05 14:03 조회 4,510 댓글 0

본문

PHP 에서 ceil(), floor(), round() 는 각각 소수점 이하 올림, 버림, 반올림 하는 함수이다.


<?php

// 기본 사용법

float ceil ( float value)  // 소수점 이하 올림
float floor ( float value)  // 소수점 이하 버림
float round ( float value)  // 소수점 이하 반올림


// 예제

floor  // 버림
floor(4.3);  // 4
floor(9.999); // 9

ceil  // 올림
ceil(4.3);    // 5
ceil(9.999);  // 10

round  // 반올림
round(3.4);        // 3
round(3.5);        // 4
round(3.6);        // 4
round(3.6, 0);      // 4
round(1.95583, 2);  // 1.96
round(1241757, -3); // 1242000
round(5.045, 2);    // 5.05
round(5.055, 2);    // 5.06

?>


** 출처 : http://happyjung.com/bbs/board.php?bo_table=lecture&wr_id=1147

추천0

댓글목록 0

등록된 댓글이 없습니다.

전체 386건 16 페이지
게시물 검색
Copyright © Baragi.Net All rights reserved.
PC 버전으로 보기