用PHP显示两个日期之间的内容?

时间:2011-11-07 01:35:09

标签: php

我希望能够在两个日期之间和之后显示一些内容或回显一些文字。

它用于促销产品,在给定价格的日期之间会降低,促销后价格将恢复到原来的价格。

这可能吗?

干杯

马特

1 个答案:

答案 0 :(得分:1)

$current_time = time();
if($current_time > $start_time && $current_time < $end_time){
    // Whatever you want during the time interval
}else{
    // Whatever you want outside the time interval
}