Convert the FULL Excel date serial format to Unix timestamp
Please use this formula to change from Excel date to Unix date, then you can use “gmdate” to get the real date in PHP: UNIX_DATE = (EXCEL_DATE – 25569) * 86400 and to convert from Unix date to Excel date, use this formula: EXCEL_DATE = 25569 + (UNIX_DATE / 86400) After doing this formula into … Read more