如何使用PhpSpreadsheet从表格单元格中检索日期?
2022-08-30 16:51:22
我有表,我使用PhpSpreadsheet来解析它们。某些单元格的格式设置为日期。问题是PhpSpreadsheet以未指定的格式返回日期格式单元格中的值:xlsx
// What it looks in excel: 2017.04.08 0:00
$value = $worksheet->getCell('A1')->getValue(); // 42833 - doesn't look like a UNIX time
如何以UNIX时间或实例的形式从单元格中获取日期?DateTimeInterface