Log 1867
20/07/2023 2023-07-20 7:57$eventDate = #תאריך אירוע#;
$birthDate = #תאריך לידה#;
$dateOfBirth = strtotime($birthDate);
$dateOfEvent = strtotime($eventDate);
$result = date(‘d/m/Y’, strtotime(‘+7 years’, $dateOfEvent));
if ($result < date('d/m/Y', strtotime('+25 years', $dateOfBirth))) {
return $result;
} else {
return '';
}