0

我有一个 foreach 循环从中获取信息:

        $eventarray[] = array(          
            "month" => $cal_months[$event_month],           
            "day1" => $event_day1,             
            "title" => $title,            
            "desc" => html_entity_decode($article),
            "month_link" =>   strtolower($event_month),
            "link" => $event_link      
        ); 

对于数组的每次迭代,它都会输出一个事件 div,其中包含标题、描述和指向实际事件页面的链接。这样做的问题是,如果同一天有两个事件,我会为当天的每个事件获得两个单独的 div。如果它们在同一天,我想做的是将事件放在同一个 div 中。

我“认为”我必须嵌套第二个 foreach 循环,但是当我这样做时,它就会出错。

这是我正在尝试的,我知道这是错误的,但我被困住了:

foreach($eventarray as $value){

        if($value['month'] == $thismonth){

            $day[] = $value['day1'];

            echo $value['title'];
            echo $value['desc'];
            echo $value['link'];
            foreach($day as $day_value){
                echo 'test';

            }


    }

如果一天中有超过一个,我如何获得加入的天数?

4

2 回答 2

0

做到这一点的简单方法不是使用嵌套foreach,而是使用两个foreach循环,一个接一个。在第一个中,将当天的事件放入一个新数组中,在第二个中,打印该数组。

// This will actually be a 2-dimensional array
$events_by_day = array();

// Get this month's events and group by day.
foreach($eventarray as $value){
    if($value['month'] == $thismonth){
        // Push this event into the $events_by_day[<DAY>] array
        $events_by_day[$value['day1']][] = $value;
    }
}

// For each day, print it.
foreach($events_by_day as $day => $events_today){
    if (count($events_today) > 0){
        echo '<div>';
        echo "$month $day";
        // Get today's events
        foreach($events_today as $event){
            echo $event['title'];
            echo $event['desc'];
            echo $event['link'];
        }
        echo '</div>';
    }
}

它需要一些格式,但你明白了。

于 2013-05-01T04:41:39.440 回答
0

你为什么不尝试解决输入。IE

     $eventarray[$event_day1][] = array(          
        "month" => $cal_months[$event_month],           
        "day1" => $event_day1,             
        "title" => $title,            
        "desc" => html_entity_decode($article),
        "month_link" =>   strtolower($event_month),
        "link" => $event_link      
    ); 
于 2013-05-01T04:27:49.813 回答