Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 터미널
- 몫과나머지
- node.js
- explode
- require
- hyper
- include
- RTRIM
- array_map
- str_replace
- 함수
- phpinfo
- 재귀약자
- proxy
- LTRIM
- trim
- implode
- ipaddress
- WSL2
- php
- array
- npm
- 배열
- nvm
- 개발환경
- require_once
- recursive acronym
- 프록시
- 문자열
- include_once
Archives
- Today
- Total
PHPINFO
PHP 몫과 나머지 구하기 본문
반응형
PHP에서 몫과 나머지를 구하는 몇 가지 방법을 소개합니다.
$b를 $a로 나누었을 때의 몫과 나머지
<?php
# $b를 $a로 나누었을 때의 몫과 나머지 구하기
//몫 구하는 방법 1
$quotient = ($b - ($b % $a)) / $a;
//몫 구하는 방법 2
$quotient = sprintf('%d', $b / $a);
// 나머지 구하는 방법
$remainder = $b % $a;
함수로 간단히 몫과 나머지 구하는 예제
<?php
function getQuotientAndRemainder($divisor, $dividend) {
$quotient = (int)($divisor / $dividend);
$remainder = $divisor % $dividend;
return array( $quotient, $remainder );
}
list($quotient, $remainder) = getQuotientAndRemainder(10, 3);
더보기
참고
How to find remainder and quotient in php?
몫과 나머지 영어로
몫 : quotient
나머지 : remainder
Comments