Log 2171
06/11/2023 2023-11-06 18:23$date = #תאריך#; // Replace with your actual date in the format of day/month/year
// Split the date into day, month, and year
list($day, $month, $year) = explode(‘/’, $date);
// Add 1 year to the current year
$newYear = intval($year) + 1;
// Create a new date string with the updated year
$newDate = “{$day}/{$month}/{$newYear}”;
return $newDate;