PHP에서 시간이 특정 범위 내에 속하는지 확인
PHP에서는 특정 시간이 속하는지 확인해야 하는 경우가 있습니다. 일출과 일몰 사이 등 특정 범위 내에서. 이 문제를 효과적으로 해결하려면 아래 설명된 단계를 따르십시오.
<code class="php">$current_time = DateTime::createFromFormat('h:i a', $current_time); $sunrise = DateTime::createFromFormat('h:i a', $sunrise); $sunset = DateTime::createFromFormat('h:i a', $sunset);</code>
<code class="php">if ($current_time > $sunrise && $current_time < $sunset) { echo 'Time is between sunrise and sunset'; }<p>예를 들어 제공된 입력을 사용하면</p> <pre class="brush:php;toolbar:false"><code class="php">$current_time = "4:59 pm"; $sunrise = "5:42 am"; $sunset = "6:26 pm";</code>
코드는 다음을 출력합니다.
Time is between sunrise and sunset
이러한 단계를 구현하면 주어진 시간이 PHP에서 지정된 범위 내에 있는지 확인할 수 있습니다.
위 내용은 PHP에서 시간이 범위 내에 있는지 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!