是的,PHP中的between
函數可以用于比較時間戳。您可以將兩個時間戳作為參數傳遞給between
函數,并檢查某個時間戳是否在這兩個時間戳之間。例如:
$startTimestamp = strtotime('2022-01-01');
$endTimestamp = strtotime('2022-12-31');
$checkTimestamp = strtotime('2022-06-15');
if ($checkTimestamp >= $startTimestamp && $checkTimestamp <= $endTimestamp) {
echo "The timestamp is between the start and end timestamps";
} else {
echo "The timestamp is not between the start and end timestamps";
}
在這個例子中,我們將startTimestamp
設置為2022年1月1日的時間戳,endTimestamp
設置為2022年12月31日的時間戳,然后檢查checkTimestamp
是否在這兩個時間戳之間。如果是,則輸出"The timestamp is between the start and end timestamps",否則輸出"The timestamp is not between the start and end timestamps"。