$current_time = time(); // 当前系统时间戳
$compare_time = strtotime('2022-01-01 00:00:00'); // 要比较的时间戳
if ($compare_time < $current_time) {
echo '要比较的时间早于当前系统时间。';
} else {
echo '要比较的时间晚于当前系统时间。';
}
顶一下
(0)
0%
踩一下
(0)
0%
- 相关评论
- 我要评论
-