Log 2447
28/12/2023 2023-12-28 14:05// Get the birth date from placeholder
$birthDate = #תאריך לידה#;
// Convert birth date string to timestamp
$birthTimestamp = strtotime($birthDate);
// Get current timestamp
$currentTimestamp = time();
// Calculate the difference in seconds between birth date and current date
$diffSeconds = $currentTimestamp – $birthTimestamp;
// Convert seconds to years
$years = floor($diffSeconds / (365 * 24 * 60 * 60));
// Convert remaining seconds to months
$remainingSeconds = $diffSeconds % (365 * 24 * 60 * 60);
$months = floor($remainingSeconds / (30 * 24 * 60 * 60));
// Echo the result
return “Number of years: ” . $years . “
“;
return “Number of months: ” . $months;