strtotime()
是 PHP 中的一個內置函數,用于將任何英文文本日期時間描述解析為 Unix 時間戳。這意味著,給定一個包含日期和/或時間信息的字符串,該函數會返回對應的 Unix 時間戳(自 1970-01-01 00:00:00 GMT 起到現在的秒數)。
以下是 strtotime()
函數的基本用法:
$timestamp = strtotime("now"); // 獲取當前時間的 Unix 時間戳
$timestamp = strtotime("2022-01-01"); // 獲取指定日期 "2022-01-01" 的 Unix 時間戳
$timestamp = strtotime("+2 days"); // 獲取當前時間后兩天的 Unix 時間戳
$timestamp = strtotime("next Thursday"); // 獲取下一個星期四的 Unix 時間戳
$timestamp = strtotime("10:30 pm"); // 獲取今天晚上 10:30 的 Unix 時間戳
注意,strtotime()
函數對輸入字符串的格式有一定要求。例如,它可以識別 “2022-01-01”、“January 1, 2022”、“next Thursday” 等格式,但不能直接識別 “2022年1月1日” 這樣的格式。如果需要處理非英文日期字符串,可以考慮使用 DateTime
類和相關方法來實現。
此外,strtotime()
函數還可以接受第二個參數,表示計算相對時間時的基準時間戳。例如:
$base_timestamp = strtotime("2022-01-01");
$new_timestamp = strtotime("+2 days", $base_timestamp); // 獲取 "2022-01-01" 之后兩天的 Unix 時間戳
總之,strtotime()
函數是 PHP 中處理日期和時間的強大工具,可以方便地解析和計算日期時間。