날짜 형식으로되어 있는지 어떻게 PHP에서 두 날짜를 비교 '03_01_12'
하고 '31_12_11'
.
이 코드를 사용하고 있습니다.
$date1=date('d_m_y');
$date2='31_12_11';
if(strtotime($date1) < strtotime($date2))
echo '1 is small ='.strtotime($date1).','.$date1;
else
echo '2 is small ='.strtotime($date2).','.$date2;
하지만 작동하지 않습니다 ..