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

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

개발

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

페이지 정보

profile_image
작성자 관리자 (61.♡.12.126)
댓글 0건 조회 4,735회 작성일 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 392건 17 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
723238005-07
714898005-07
703084005-08
693947005-10
683059005-11
672848005-14
664196005-15
654920005-19
642798012-20
631992012-23
621726001-13
611863001-28
603077001-29
591791001-31
581925002-03
571845002-08
562456002-08
551855002-13
542048002-15
532546002-18

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.