Display content based on date with PHP

后端 未结 5 822
醉酒成梦
醉酒成梦 2021-01-15 10:15

I\'m putting together a contest site built on Wordpress. Legally, the contest has to start at midnight. To avoid being up at midnight to set up the content, i\'d like to bui

5条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-15 10:48

    // setup the start date (in a nice legible form) using any
    // of the formats found on the following page:
    // http://www.php.net/manual/en/datetime.formats.date.php
    $contestStart = "February 1, 2012"; 
    
    // check if current time is before the specified date
    if (time() < strftime($contestStart)){
      // Display splash screen
    }
    
    // date has already passed
    else {
      // Display page
    }
    

提交回复
热议问题