Warning: Division by zero inC:\xampp\htdocs\경로 .,.. 파일이름.phpon line652
print_r($total_of_propln_total);
// if ($total_of_propln_total = 0) {
// $today_percent = 0;
//
// }else{
// $today_percent = ((int)$number / (int)$total_of_propln_total) * 100;
// }
// 생산계획 수가 없을 때 예외처리
if ($total_of_propln_total >0) {
$today_percent = ((int)$number / (int)$total_of_propln_total) * 100;
} else{
$today_percent = 0;
}
분모가 0 이라서 나는 오류..
예외처리 해주기.
주석처리한 윗부분으로 하면 왜 안되는가 ? 모르겠음
'PHP' 카테고리의 다른 글
배열값을 ('a','b','c') 형태로 변경하는 법(sql문에 value 값에 넣기 위함) (0) | 2021.09.10 |
---|---|
for 문으로 select 항목들 불러오기 (0) | 2021.07.05 |
php 날짜 월, 일, 시간 앞의 무의미한 0 제거 (0) | 2021.07.02 |
json 데이터 표에 나타내기 .append (0) | 2021.06.30 |
php ajax json 타입으로 자료 받아올 때 한글 깨짐 고치는법 (0) | 2021.06.30 |