Be careful when using two numbers as the year. I came across this situation:<?phpecho strtotime('24.11.22');echo date('d.m.Y H:i:s', 1669324282) . "\n\n";// Butecho strtotime('24.11.2022');echo date('d.m.Y H:i:s', 1669237200);?>Output:166932428225.11.2022 00:11:22166923720024.11.2022 00:00:00