php date1 php 실제 존재하는 날짜 체크 php 존재하는 날짜인지 체크하는 방법입니다. checkdate() checkdate("월", "일", "년"); // return boolean function checkDate($date){ $dateArr = explode('-', $date); $year = $dateArr[0]; $month = $dateArr[1]; $days = $dateArr[2]; return checkdate($month, $days, $year); } $newDate = "2021-02-31"; $check = checkDate($newDate); // $check -> FALSE 문자열 형태로 넘겨서 explode로 쪼갠후 넘겼는데 이유는 date("y-m-d" ,strtotime("2021-02-31")); 나 n.. 2021. 5. 21. 이전 1 다음