0

我怎样才能让数据库中的记录值在数组中像这样排序。假设我要添加日期。

array
 [0] => array=>'id'=>'26' 'date'=>'26'

 [1] => array=>'id'=>'27' 'date'=>'27',
        array=>'id'=>'28' 'date'=>'27',
        array=>'id'=>'29' 'date'=>'27'

 [2] => array=>'id'=>'30' 'date'=>'29'

 [3] => array=>'id'=>'31' 'date'=>'31',
        array=>'id'=>'32' 'date'=>'31',
        array=>'id'=>'33' 'date'=>'31'

基本上,如果下一个 id 包含一个月中具有相同日期(天数)的记录,我想将一个数组添加到同一个索引。否则正常添加。

现在,我的功能是添加记录的行,而不是按照我想要的格式对其进行排序。

我希望它采用这种格式的原因是,我需要运行 foreach,如果 1 天包含 2 条记录,那么它会将另一条记录附加<li>到我的无序列表中。

public function getArticles()
{
        $sql = 'CALL getArticles()';        
        $articles = Array();

        if (Model::getConnection()->multi_query($sql)) {
            do {
                if ($result = Model::getConnection()->store_result()) {
                    while ($row = $result->fetch_assoc()) {     
                        array_push($articles,$row);                         
                    }
                $result->free();
                } 
            } while (Model::getConnection()->next_result());
        }
        return $articles;
}
4

2 回答 2

0

我不知道您的某些代码在做什么,但我认为这是重要的部分。

while ($row = $result->fetch_assoc()) {     
    if (!isset($articles[$row['date']])) {
        $articles[$row['date']] = array();
    }
    $articles[$row['date']][] = $row;                        
}

唯一的区别是您的数组将被键入date而不是从零递增。如果你真的想重新索引它,你可以做......

array_values($articles);
于 2012-04-03T22:29:51.050 回答
0

正如 saveer 指出的那样,您的代码中有很多我不知道的功能,所以我添加了注释以指示该过程的下落:

// Start of your loop

// $value is what you're getting from the DB...

$array_search = array_search($value,$main_array);

if($array_search)
{
   // If this value already exists, we need to add
   // this value in +1 of its current value
   $main_array[$array_search][] = $value + 1;
}
else
{
   // Make a new array key and add in the value
   $main_array[] = $value;
}

// End of your loop
于 2012-04-04T01:08:35.387 回答