Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PHP 中处理了大量电子表格,其中一个单元格包含一个时间戳,该时间戳具有以下自定义格式:[h]:mm:ss.0;@
[h]:mm:ss.0;@
这会将诸如 2.09491E-05 之类的数字转换为 0:00:01.8
当我将它读入 php 时,我只能得到 2.09491E-05 的值,但我不知道如何将其转换为秒。任何人都可以帮忙吗?
在 Excel 中,一天等于 1。因此,为了将 Excel 表示的 1.81 秒 2.09491E-05 转换为每秒等于 1 的数字,只需乘以一天中的秒数,即 24* 60*60 或 86,400:
2.09491E-05 * 86,400 = 1.81