我正在使用PHP(Codeigniter)开发一个Web应用程序。 当用户在应用程序中请求某个资源时,我需要检查今天的日期是在本月25日之前还是之后。我怎样才能做到这一点?我不知道怎么做。
答案 0 :(得分:3)
应该这样做......
if ( date('j') < 25 ) {
// date before 25th
}
答案 1 :(得分: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
}