PHP Warning: Division by zero in
주로 값이 0인 변수를 가지고 수식계산을 할 때 나타난다.
해결방법은 값이 0일때는 계산식에 들어가지 않게 분기처리 해준다.
예시)
// Bad;
$test = 0;
$test2 = $test / 2;
// Good!
if($test != 0){
$test2 = $test / 2;
}
'Language > PHP' 카테고리의 다른 글
[Deprecated] $HTTP_POST_VARS 대체 (0) | 2020.03.10 |
---|---|
[Deprecated] $HTTP_COOKIE_VARS 대체 (0) | 2020.03.10 |
PHP Warning: Creating default object from empty value in (0) | 2020.03.10 |
PHP Fatal error: Cannot use isset() on the result of an expression (0) | 2020.03.09 |
PHP Warning: Use of undefined constant string - assumed 'string' (0) | 2020.03.09 |