我想要一张基于日期颜色的表格。如果日期(销售产品)是20 - 12 - 2013,颜色是绿色,直到7天后。 8天后,表格颜色必须为红色。
$current_time = $col->getCreatedAt();
if ($current_time) {
$style = "green";
}
if ($current_time >+ 8) {
$style = "red";
}
答案 0 :(得分:1)
将>+
更改为>=
。还可以在php中查看Comparison Operators
if ($current_time >= 8) {
$style = "red";
}
答案 1 :(得分:0)
这看起来像一个简单的比较错误。试试这个:
if ($current_time >= 8) {
$style = "red";
}