Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PHP (Codeigniter) 开发一个 Web 应用程序。当用户在应用程序中请求某个资源时,我需要检查今天的日期是在本月 25 日之前还是之后。我怎样才能做到这一点?我不知道怎么做。
这个应该做...
if ( date('j') < 25 ) { // date before 25th }
您可以使用具有格式类型的date函数j
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