- Output for 8.2.0 - 8.2.27, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
- greater than
<?php
$date_set = date("Y-m-d", strtotime('10-12-2024'));
$date_now = date("d-m-Y"); // this format is string comparable
if ($date_set > '20-12-2024') {
echo 'greater than';
}else{
echo 'Less than';
}