在PHP中,您可以使用strtotime()
函数将日期字符串转换为时间戳。以下是一个示例:
<?php
$date_string = "2021-08-30"; // 日期字符串,格式为 "YYYY-MM-DD"
$timestamp = strtotime($date_string); // 将日期字符串转换为时间戳
echo $timestamp; // 输出时间戳
?>
如果您想从当前时间开始计算时间戳,可以使用time()
函数:
<?php
$timestamp = time(); // 获取当前时间的时间戳
echo $timestamp; // 输出时间戳
?>
如果您需要将时间戳转换回日期字符串,可以使用date()
函数:
<?php
$timestamp = 1630142400; // 时间戳
$date_string = date("Y-m-d", $timestamp); // 将时间戳转换为日期字符串
echo $date_string; // 输出 "2021-08-30"
?>