0

嗨,我正在做一个项目,我的脑海里一片空白,所以我把它交给了世界来帮助我。

我有一个像这样的 MySQL 数据库项目的开始日期,通知日期是从结束后一周,然后是过期的结束日期

+table+
|id|   start  |  notice |   end    |status|
|01|2013-09-01|2013-9-23|2013-10-01|Active|
....

PHP

$query = mysql_query("SELECT *, 
DATE_FORMAT(`start_date`,'%d-%m-%Y') as fmt_start_date,
DATE_FORMAT(`notice_date`,'%d-%m-%Y') as fmt_notice_date,
DATE_FORMAT(`end_date`,'%d-%m-%Y') as fmt_end_date 
FROM `$table` ORDER BY `fmt_start_date` ASC "); 

while ($row = mysql_fetch_array($query)) {
    $start = strtotime($row["fmt_start_date"]);
    $notice = strtotime($row["fmt_notice_date"]);
    $end = strtotime($row["fmt_end_date"]);
    $current = strtotime(date('d-m-Y'));

    if( $notice >= $current && $end <  $current){
        mysql_query("UPDATE `$table` SET  `status` =  'Notice' WHERE  `id` ='{$row["id"]}';"); 
    } elseif ( $end <= $current ){
        mysql_query("UPDATE `$table` SET  `status` =  'Expire' WHERE  `id` ='{$row["id"]}';");
    } else {
        mysql_query("UPDATE `$table` SET  `status` =  'Active' WHERE  `id` ='{$row["id"]}';");
    }
}

我想要它做的是当日期通过它时它会改变它的状态,所以当它在通知周时状态改变为通知,当它已经过去它过期并且当它没有通过这些日期时它会停留积极的。

我知道我想怎么做,但我的脑海里对这个方法一无所知。请帮我上网。

4

2 回答 2

1

试试这个:

if ($current < $notice){
//has not reached notice (Active)

} elseif ($current < $end){
//has not reached end but has reached notice (Notice)

} else{
//has reached end (Expired)

}
于 2013-09-19T18:18:07.293 回答
1

首先:

关于 mysql 功能,您已被警告。

要从 MySQL 数据库获取 UNIX 时间戳,您应该使用 MySQL 函数 UNIX_TIMESTAMP(),例如:

SELECT UNIX_TIMESTAMP(`field_name`) FROM `table_name`;

为了获得一天开始的时间戳,最好使用“strtotime('today')”。

回答您的问题:在您的情况下,您不需要使用这么多 PHP。足以发出两个 MySQL 请求:

$current = strtotime('today');
mysql_query("UPDATE `$table` SET  `status` =  'Notice' WHERE  `notice` < FROM_UNIXTIME($current);");
mysql_query("UPDATE `$table` SET  `status` =  'Expire' WHERE  `end` < FROM_UNIXTIME($current);");
于 2013-09-19T18:54:57.287 回答