在PHP中,將日期或時間字符串轉換為時間戳的方法是使用strtotime()
函數。下面是一些示例:
$date_string = "2022-01-01";
$timestamp = strtotime($date_string);
echo $timestamp; // 輸出:1640976000
$time_string = "12:30:00";
$timestamp = strtotime($time_string);
echo $timestamp; // 輸出:456108600
$datetime_string = "2022-01-01 12:30:00";
$timestamp = strtotime($datetime_string);
echo $timestamp; // 輸出:1640976000
$relative_time_string = "+1 day";
$timestamp = strtotime($relative_time_string);
echo $timestamp; // 輸出:1640985600(當前時間的時間戳加1天)
請注意,strtotime()
函數會根據本地時區和環境設置來解析日期和時間字符串。如果需要指定時區,可以使用date_default_timezone_set()
函數來設置。