这是什么类型的时间戳?

what type of timestamp is this?

我有以下时间戳;

410424200 

等于;

01 Jan 2013, 03:21:10 UTC

这是什么时间戳,如何将其转换为 PHP 中的日期和时间?

感谢您的帮助。

使用 Lewis 示例作为基础,这可能是以秒为单位的时间戳,基础为 2000-01-01。

$ts = 649200260;

$date = date_create('2000-01-01 UTC')->modify($ts." Seconds");
echo $date->format('Y-m-d H:i:s');

输出:

2020-07-2721:24:20