0

我在处理电视节目时遇到了问题。

基本上,我想输出我一周中的日子和每天播出的节目。(显然没有做 7 个不同的查询)

以下输出节目的播出日期在一周的开始和结束之间

$stmt = $conn->prepare("SELECT * 
FROM show_episode_airdate, show_episode
WHERE show_episode_airdate.airdate BETWEEN :weekbeginning AND :weekend AND show_episode.episode_id = show_episode_airdate.episode_id ");

$stmt->execute(array(':weekbeginning' => $begin_date, ':weekend' => $end_date));

while($row = $stmt->fetch()) {

}

这将输出一周中的七个日期。

foreach ($listofdays as $num=>$jour) {
     $date_table[$num] = date('m-d-Y',$weekbegin[0]+$num*DUREE_UN_JOUR);
     $daysoftheweek = $date_table[$num];
     var_dump($daysoftheweek);
    }

这将输出以下内容:

string '05-20-2013' (length=10)

string '05-21-2013' (length=10)

string '05-22-2013' (length=10)

string '05-23-2013' (length=10)

string '05-24-2013' (length=10)

string '05-25-2013' (length=10)

string '05-26-2013' (length=10)

我不明白如何将这两件事结合起来以实现我所追求的目标??!

4

1 回答 1

0

这是我解决这个问题的作战计划:

利用$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);

循环这些并将日期从它们的字符串格式转换为 unix 时间戳,可能使用explodeand mktime

foreach($rows as &$row) {
    $unix_airdate= mktime(...TODO);
    $row['unix_airdate']= $unix_airdate;
}
unset($row); //do not forget because $row was a reference

然后在您已经编写的循环中,使用http://www.php.net/manual/en/function.array-filter.php $filtered_rows= array_filter($rows, 'my_filter_function..TODO');以便 my_filter_function 检查 unix_airdate 是否在 weekbegin 和下周开始之前。

现在检查过滤后的数组并输出所有节目。如果您希望它们按天聚合,请遍历一周中的几天并按 day_begin 和 day_begin_next_day 过滤。

于 2013-05-23T15:38:13.197 回答