php 判断绩效单只能在当前月和下个月
时间: 2023-11-30 15:03:14 浏览: 66
你可以使用PHP中的日期函数来判断绩效单是否在当前月和下个月。以下是一个简单的示例代码:
```php
// 获取当前时间戳
$current_timestamp = time();
// 获取当前月份
$current_month = date('n', $current_timestamp);
// 获取下个月份
$next_month = date('n', strtotime('+1 month', $current_timestamp));
// 获取绩效单的日期时间戳
$performance_timestamp = strtotime('2021-09-30');
// 获取绩效单的月份
$performance_month = date('n', $performance_timestamp);
// 判断绩效单是否在当前月和下个月
if ($performance_month == $current_month || $performance_month == $next_month) {
echo '绩效单在当前月或下个月';
} else {
echo '绩效单不在当前月或下个月';
}
```
在上面的示例代码中,我们首先获取当前时间戳和当前月份,然后用`strtotime()`函数获取下个月份。接下来,我们获取绩效单的日期时间戳,并用`date()`函数获取绩效单的月份。最后,我们比较绩效单的月份是否等于当前月份或下个月份,如果是,则说明绩效单在当前月或下个月,否则不在。
阅读全文