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

본문 바로가기
사이트 내 전체검색

개발

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

페이지 정보

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

본문

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

댓글목록

등록된 댓글이 없습니다.

Total 393건 17 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
733245005-07
724916005-07
713089005-08
703962005-10
693065005-11
682859005-14
674210005-15
664942005-19
652813012-20
642005012-23
631732001-13
621878001-28
613095001-29
601802001-31
591935002-03
581851002-08
572472002-08
561865002-13
552057002-15
542559002-18

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.