- Output for 8.2.0 - 8.2.26, 8.3.0 - 8.3.14, 8.4.1
- Parse error: syntax error, unexpected single-quoted string "10-12-2024", expecting ")" in /in/vK2Qq on line 3
Process exited with code 255.
<?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';
}