📅  最后修改于: 2023-12-03 15:18:22.012000             🧑  作者: Mango
PHP中的date_timestamp_get()函数用于获取指定日期的UNIX时间戳。UNIX时间戳表示从1970年1月1日00:00:00 UTC到指定时间的秒数。
date_timestamp_get($datetime)
参数说明:
$datetime
: 必填,一个 DateTime
对象,表示要获取 UNIX 时间戳的日期及时间。返回一个整数,表示从1970年1月1日00:00:00 UTC到指定时间的秒数。
$datetime = new DateTime('2021-07-08 09:30:00');
$timestamp = date_timestamp_get($datetime); // 返回一个整数,如:1625737200
echo "指定日期的UNIX时间戳为:" . $timestamp;
输出结果为:
指定日期的UNIX时间戳为:1625737200
date_timestamp_get()
函数仅适用于 DateTime
对象,不能直接用于时间戳。date()
函数。