1

我正在尝试从 MySQL 数据库中列出 PHP 中的日记事件,但按天分组。我会解释的。

这是我到目前为止的截图:

在此处输入图像描述

如您所见,2012 年 10 月 23 日有两个日记事件,并显示了两个日历图标/表示/任何内容。我实际上希望它在左侧显示一个日历图标,但在右侧列出所有当天的事件,直到第二天 - 正如我在下面的 a̶r̶t̶i̶s̶t̶s̶ idiots 印象中所见:

在此处输入图像描述

这是我刚刚编写的代码,有人可以指出我正确的方向:

$SQL = "SELECT entry_id, entry_title, entry_body, entry_date, entry_day, entry_month, entry_year ";
$SQL .= "FROM pages_diary WHERE entry_month = :this_month AND entry_year = :this_year ";
$SQL .= "ORDER BY entry_date DESC;";
// PDO stuff
if ($STH->rowCount() > 0) {
    while($row = $STH->fetch()):
        $this_db_month_word = mktime(0, 0, 0, $row['entry_month']);
        $this_db_month_word = strftime("%b", $this_db_month_word);
        echo '<div class="diary_events_item" id="diary_events_item_'.$row['entry_id'].'">';
            echo '<div class="diary_events_item_left">';
                echo '<div class="calendar_wrap">';
                    echo '<div class="calendar_wrap_top">';
                        echo $this_db_month_word;
                    echo '</div>';
                    echo '<div class="calendar_wrap_bottom">';
                        echo str_pad($row['entry_day'],2,'0',STR_PAD_LEFT);;
                    echo '</div>';
                echo '</div>';
            echo '</div>';
            echo '<div class="diary_events_item_right">';
                echo '<strong>'.htmlspecialchars($row['entry_title']).'</strong><br>';
                echo '<p>'.htmlspecialchars($row['entry_body']).'</p>';
            echo '</div>';
            echo '<div class="clear"></div>';
        echo '</div>';
    endwhile;
} else {
    echo '<p>There are no diary entries logged for <strong>'.$this_month_word.' '.$this_year.'</strong>.</p>';  
}

不寻找确切的代码(虽然那会很麻烦),只是一个解释就可以了,我相信我可以从中解决。

修复

在 WHILE 循环结束时,我添加了:

$last_db_day = $row['entry_day'];

然后将日历项包装在:

if ($last_db_day != $row['entry_day']) {
    echo '<div class="calendar_wrap_top">';
        echo $this_db_month_word;
    echo '</div>';
    echo '<div class="calendar_wrap_bottom">';
        echo str_pad($row['entry_day'],2,'0',STR_PAD_LEFT);;
    echo '</div>';
}
4

2 回答 2

3

当您从数据库中遍历您的结果集时,请跟踪entry_date您看到的最后一个,如果当前记录是针对不同日期的,则仅输出一个新的日历图标。

我通常这样做如下:

if ($STH->execute()) {

  // output headers

  $row = $STH->fetch();
  while ($row) {
    $current_date = $row['entry_date'];

    // output $current_date initialisation
    do {
      // output event $row
    } while ($row = $STH->fetch() and $row['entry_date'] == $current_date);
    // output $current_date termination
  }

  // output footers

}
于 2012-10-23T23:10:15.063 回答
0

虽然我会反其道而行之,将 PHP 嵌入 HTML 中,而不是反过来,但我将使用您的代码执行以下操作:

$SQL = "SELECT entry_id, entry_title, entry_body, entry_date, entry_day, entry_month, entry_year ";
$SQL .= "FROM pages_diary WHERE entry_month = :this_month AND entry_year = :this_year ";
$SQL .= "ORDER BY entry_date DESC;";
// PDO stuff
if ($STH->rowCount() > 0) {
    $loopDay = '';

    while($row = $STH->fetch()):

        if ($row['entry_day'] != $loopDay) {
            $loopDay = $row['entry_day'];
            $changed = true;
        }


        $this_db_month_word = mktime(0, 0, 0, $row['entry_month']);
        $this_db_month_word = strftime("%b", $this_db_month_word);
        echo '<div class="diary_events_item" id="diary_events_item_'.$row['entry_id'].'">';
            echo '<div class="diary_events_item_left">';

                if ($changed) {
                    echo '<div class="calendar_wrap">';
                        echo '<div class="calendar_wrap_top">';
                            echo $this_db_month_word;
                        echo '</div>';
                        echo '<div class="calendar_wrap_bottom">';
                            echo str_pad($row['entry_day'],2,'0',STR_PAD_LEFT);;
                        echo '</div>';
                    echo '</div>';
                } else {
                    echo '&nbsp;';
                }

            echo '</div>';
            echo '<div class="diary_events_item_right">';
                echo '<strong>'.htmlspecialchars($row['entry_title']).'</strong><br>';
                echo '<p>'.htmlspecialchars($row['entry_body']).'</p>';
            echo '</div>';
            echo '<div class="clear"></div>';
        echo '</div>';

    $changed = false;
    endwhile;
} else {
    echo '<p>There are no diary entries logged for <strong>'.$this_month_word.' '.$this_year.'</strong>.</p>';
}
于 2012-10-23T23:30:50.583 回答