在PHP中,可以使用strtotime()
函数将日期字符串转换为时间戳。这是一个简单的示例:
<?php
// 日期字符串
$date_string = "2021-06-01";
// 使用strtotime()函数将日期字符串转换为时间戳
$timestamp = strtotime($date_string);
// 输出结果
echo $timestamp; // 结果为:1622438400
?>
如果你需要将当前日期和时间转换为时间戳,可以直接使用time()
函数:
<?php
// 获取当前日期和时间的时间戳
$current_timestamp = time();
// 输出结果
echo $current_timestamp; // 结果为当前日期和时间的时间戳
?>