在 PHP 中,now()
函數和 strtotime()
函數都可以用于獲取當前時間戳。
now()
函數返回當前的日期和時間,格式為 YYYY-MM-DD HH:mm:ss
。例如:
$current_time = now();
echo $current_time; // 輸出類似 "2022-01-01 12:34:56"
要將 now()
函數返回的日期時間字符串轉換為時間戳,可以使用 strtotime()
函數。例如:
$date_string = "2022-01-01 12:34:56";
$timestamp = strtotime($date_string);
echo $timestamp; // 輸出類似 1641027296
同樣地,要將一個時間戳轉換為日期時間字符串,也可以使用 date()
函數。例如:
$timestamp = 1641027296;
$date_string = date("Y-m-d H:i:s", $timestamp);
echo $date_string; // 輸出類似 "2022-01-01 12:34:56"