是的,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"。