在PHP中,可以使用time()
函数来生成当前时间的时间戳。time()
函数返回从1970年1月1日00:00:00(UNIX纪元)到当前时间的秒数。
示例:
<?php
// 生成当前时间的时间戳
$current_timestamp = time();
// 输出时间戳
echo $current_timestamp;
?>
如果你需要生成特定日期和时间的时间戳,可以使用strtotime()
函数。strtotime()
函数接受一个字符串参数,并尝试将其解析为日期和时间。如果解析成功,它将返回该日期和时间的时间戳。
示例:
<?php
// 生成一个特定日期和时间的时间戳
$date_string = '2022-01-01 00:00:00';
$date_timestamp = strtotime($date_string);
// 输出时间戳
echo $date_timestamp;
?>