본문으로 바로가기

날짜 비교 (stamp)

category Backend/PHP 2019. 7. 16. 16:44
반응형

날짜 비교 (stamp)


$timenow = date("Y-m-d H:i:s"); 
 
$timetarget = "2017-03-15 00:00:00";
 
 
 
$str_now = strtotime($timenow);
 
$str_target = strtotime($timetarget);
 
 
 
 
 
if($str_now > $str_target) {
 
echo "비교할 시간이 현재 시간보다 이전입니다.";
 
} elseif($str_now == $str_target) {
 
echo "비교할 시간이 현재시간과 같습니다.";
 
else {
 
echo "비교할 시간이 현재시간보다 작습니다.";
 
}



반응형

'Backend > PHP' 카테고리의 다른 글

php 온라인 소스실행 사이트  (0) 2019.10.17
브라우저 구별법  (0) 2019.10.17
php CodeIgniter index.php 죽이기  (0) 2019.07.06
파일 업로드 및 다운로드  (0) 2019.06.26
접근 방지  (0) 2019.06.23