Log 1926
31/07/2023 2023-07-31 9:52function calculateValue($date, $startDirectRank, $endEligibility) {
if ($date >= $startDirectRank && ($endEligibility == ” || $date < $endEligibility)) {
return #דרגה מקושר ישירות לתמת#;
} else {
return 1;
}
}
// Test with example values
$date = '01/09/2022';
$startDirectRank = #תחילת דרגה ישירות לתמת#;
$endEligibility = #סיום זכאותישירות לתמת#;
return calculateValue($date, $startDirectRank, $endEligibility);