在PHP中,可以使用strtotime()
函數將日期字符串轉換為時間戳。strtotime()
函數接受一個日期字符串作為參數,并返回從1970年1月1日00:00:00(UNIX紀元)到指定日期的秒數。
以下是一個簡單的示例:
<?php
// 日期字符串
$date_string = "2022-01-01";
// 使用strtotime()函數將日期字符串轉換為時間戳
$timestamp = strtotime($date_string);
// 輸出結果
echo "The timestamp for the date '$date_string' is: " . $timestamp;
?>
在這個示例中,我們將日期字符串"2022-01-01"
轉換為對應的時間戳。運行這段代碼,你將看到輸出結果為:
The timestamp for the date '2022-01-01' is: 1641027600
請注意,strtotime()
函數還支持一些額外的參數,例如時區、日期格式等。你可以查閱PHP文檔以獲取更多信息:https://www.php.net/manual/en/function.strtotime.php