在PHP中,您可以使用time()
函数来获取当前时间戳。这个函数返回自1970年1月1日00:00:00(UNIX纪元)以来的秒数。以下是如何使用time()
函数的示例:
<?php
// 获取当前时间戳
$current_timestamp = time();
// 输出当前时间戳
echo "当前时间戳:" . $current_timestamp;
?>
如果您想要获取特定日期和时间的时间戳,可以使用strtotime()
函数。这个函数将任何英文文本的日期时间描述解析为UNIX时间戳。例如:
<?php
// 获取2022年1月1日00:00:00的时间戳
$date_timestamp = strtotime("2022-01-01 00:00:00");
// 输出时间戳
echo "2022年1月1日00:00:00的时间戳:" . $date_timestamp;
?>