在PHP中,可以使用strtotime()
函数将日期字符串转换为时间戳。例如:
$date_string = "2021-09-01"; $timestamp = strtotime($date_string); echo $timestamp; // 输出:1630483200
如果你需要将时间戳转换为日期字符串,可以使用date()
函数。例如:
$timestamp = 1630483200; $date_string = date("Y-m-d", $timestamp); echo $date_string; // 输出:2021-09-01