情况
我有一个MySQL数据库表,里面有很多日期。
现在我需要从这个tableentries创建一个表格,如下所示:
May | |
22.05.2014 | Person 1 | Person 2
23.05.2014 | Person 1 | Person 2
June | |
02.06.2014 | Person 1 | Person 2
25.06.2014 | Person 1 | Person 2
等。
代码
我现在正在尝试通过我的所有查询结果创建一个循环来执行此操作。就在那里我卡住了。
我有这样的事情:
" while" (fetch assoc)循环我有这个:
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$date = $row['pp_date'];
$month = date('m', strtotime($date));
$entryarray = array();
}
你可以看到,我首先将日期的月份保存到数组中。现在我不知道,如何创建数组来保存数组中每个月的所有行,最后将结果输出到表中。
答案 0 :(得分:0)
我认为您的表格报告仅为一年。如果是这样,您可以将月份用作数组的索引键。
$table = array();
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$month = date('m', strtotime($row['pp_date']));
if(!isset($table[$month]))
{
$table[$month] = array();
}
$table[$month][] = $row; //... add a table row
}
现在,您可以通过迭代数组的键来回显$table
数组。它们将按创建顺序分组。所以这取决于你的SQL查询。
foreach($table as $month=>$rows)
{
echo $month;
foreach($rows as $row)
{
print_r($row);
}
}
答案 1 :(得分:0)
您可以尝试这样的事情:
$entryarray = array();
$stmt="";//you statement here
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
{
$date = $row['pp_date'];
$month = date('m', strtotime($date));
$entryarray[$month][] =$row['data1'];//populate your array by the required data indexed by the month
$entryarray[$month][] =$row['data2'];
$entryarray[$month][] =$row['data3'];
}
然后,为了获得您的数据,您可以执行以下操作:
foreach ($entryarray as $key => $value) {
print $key; //you will get the key of your array
foreach ($value as $key => $value){print $value; }//the value of the required key
}