PHP에서 시간이 두 시간 사이인지 확인하는 방법 이 질문에 이미 답변이 있습니다. PHP를 사용하여 두 날짜의 차이를 계산하는 방법은 무엇입니까? 32 답변 다음 세 문자열 (현재 시간, 일몰 및 일출)이 있습니다. 현재 시간이 일출과 일몰 사이인지 어떻게 알 수 있습니까? $current_time = "10:59 pm"; $sunrise = "5:42 am"; $sunset = "6:26 pm"; $current_time = "4:59 pm"; $sunrise = "5:42 am"; $sunset = "6:26 pm"; $date1 = DateTime::createFromFormat('H:i a', $current_time); $date2 = DateTime::createFromFormat('H:i ..