-2

我正在使用 PHP (Codeigniter) 开发一个 Web 应用程序。当用户在应用程序中请求某个资源时,我需要检查今天的日期是在本月 25 日之前还是之后。我怎样才能做到这一点?我不知道怎么做。

4

2 回答 2

3

这个应该做...

if ( date('j') < 25 ) {
    // date before 25th
}
于 2012-05-08T11:12:13.047 回答
2

您可以使用具有格式类型的date函数j

if (date('j') > 25) {
    // It is after the 25th
} elseif (date('j') < 25) {
    // It is before the 25th
} else {
    // It is the 25th
}

有关详细信息,请参阅http://php.net/manual/en/function.date.php

于 2012-05-08T11:13:04.260 回答