我正在尝试使用DateTime来确定新发布的漫画应该保持突出显示的时间长度。因此,我的目标是让最新的漫画“突出显示”2天,然后回到常规(灰色,就像其余的一样)。
注意:这是我之前提出的一个问题。我正在重申它,因为之前的问题对人们来说变得相当混乱。所以我重新编写了代码,简化了我的问题,并重新询问。
我的逻辑:
Loop through all comics {
if comic date >= current date, display that comic with highlight CSS tag,
else display it with normal CSS tag.
}
我的代码:我想知道为什么这不起作用...它甚至没有显示最新的漫画(其日期> current_date)。
$desc = (isset($_GET['description']) ? ($_GET['description']) : null);
$row = $catResult->fetch_assoc();
$current_date = new DateTime;
echo "Current Date: " . $current_date->format('Y-m-d H:i:s');
//$comic_date->modify('3 day');
//DISPLAY IMAGES TO CORRECT PAGE FROM DATABASE
echo '<ul>';
$imageCounter = 0;
while (($imageCounter < $imagesPerPage) && ($row = $catResult->fetch_assoc())) {
$comic_date = new DateTime($row['date']);
$class = ($comic_date >= $current_date) ? 'newcomics' : 'comics';
echo '<li>';
echo '<span class="' . $class . '"><a href=".?action=viewimage&site='.$site. '&id=' . $row['id'] .'" title="' . $row['description'] . '" alt="' . $row['title'] . '">
<img src="./scripts/thumber.php?img=.' . $thumbpath.$row['thumb'] . '&mw=220&mh=220"/></a>
<br /><br /> ' . $row['description'] . $row['date'] . '</span>';
$imageCounter++;
echo '</li>';
}
echo '</ul>';
有什么想法吗?
答案 0 :(得分:2)
您的三元条件已设置为条件为真,您只输出<span class="newcomics">
而不输出任何其他内容(不是锚标记等)。
我建议这样做,以使其更具可读性:
$class = ($row['date'] >= $current_date) ? 'newcomic' : 'comic'
echo '<span class="' . $class . '"><a href=".?action=viewimage&site='.$site. '&id=' . $row['id'] .'" title="' . $row['description'] . '" alt="' . $row['title'] . '"><img src="./scripts/thumber.php?img=.' . $thumbpath.$row['thumb'] . '&mw=220&mh=220"/></a> <br /><br /> ' . $row['description'] . $row['date'] . '</span>';