php foreach in foreach

时间:2013-09-29 11:26:01

标签: php foreach

我想在桌子上展示一些帖子。 每个帖子都有一个id和一个parent_id。

我想用嵌套的foreach循环遍历表,但我不能让它工作。 我的想法是遍历每个帖子,打印名称和内容,并找到所有孩子(通过循环每个帖子,看看孩子的父ID是否等于我的id。)

我的代码是:

$allPosts = $posts;
foreach ($posts as $post) {
    if ($post->parent_id == 0){ //0 means highest level, no parent
        echo $post->name;
        $current_id = $post->id;

        foreach ($allPosts as $childPost){
            if($childPost->parent_id == $current_id){
                echo $cihldPost->name;

            }   
        }
    }
}

问题是,第一个循环只运行一次。如果我删除第二个foreach循环,第一个正确运行。

为什么会发生这种情况,我该如何解决?

增加: 帖子本身就像一篇博文,它包含以下内容:id,title,body,compact,parent_id。其中id是唯一的id,title和body作为博客帖子的标题和正文,compact是一个用于url的短名称,一个父id来告诉帖子所在的人,即。我是我父母的孩子。

由于用户应该可以移动帖子并将帖子放在菜单中,因此可以将顶级帖子视为菜单项,将父级视为子菜单项。

3 个答案:

答案 0 :(得分:2)

  

我的想法是遍历每个帖子,打印名称和内容,并找到所有孩子(通过循环每个帖子,看看孩子的父ID是否等于我的id。)

目前,您只是想再次遍历同一个对象。 $allPosts变量不是必需的。如果您尝试遍历每个子元素,则需要在嵌套的$post循环中使用foreach

你现在正在做:

$obj2 = $obj;
foreach ($obj as $child) {
    foreach ($obj2 as $anotherchild) {
    # code...
    }
}

粗略地说,结构应该如下:

foreach ($obj as $child) {
    foreach ($child as $secondchild) {
      # code...
    }
}

使用您的代码:

foreach ($posts as $post) {
    if ($post->parent_id == 0){ //0 means highest level, no parent
        echo $post->name;
        $current_id = $post->id;

        foreach ($post as $childPost){
            if($childPost->parent_id == $current_id){
                echo $cihldPost->name; // <-- typo?    
            }   
        }
    }
}

答案 1 :(得分:0)

出于某种原因,foreach没有对我的Controller传递给我的视图的$ posts对象本身起作用。但是,如果我将$ posts保存在本地数组中,则一切正常。我仍然不知道为什么我首先遇到问题,所以请评论或提供更好的答案。

    $mylist = array();
foreach($posts as $post) {
    $listitem = array();
    $listitem['id'] = $post->id;
    $listitem['parent_id'] = $post->parent_id;
    $listitem['title'] = $post->title;
    $listitem['compact'] = $post->compact;
    $mylist[] = $listitem;
}
foreach($mylist as $listitem){
    #code..
    foreach($mylist as $inneritem){
         #code..
    }
}

答案 2 :(得分:0)

以下是我更改代码的方式:

$posts = array(
    (object) array("parent_id" => 0, "id" =>  1, "name" => 'Outer 1'),
    (object) array("parent_id" => 0, "id" =>  2, "name" => 'Outer 2'),
    (object) array("parent_id" => 0, "id" =>  3, "name" => 'Outer 3'),
    (object) array("parent_id" => 0, "id" =>  4, "name" => 'Outer 4'),
    (object) array("parent_id" => 0, "id" =>  5, "name" => 'Outer 5'),
    (object) array("parent_id" => 1, "id" =>  6, "name" => 'Inner 1.1'),
    (object) array("parent_id" => 1, "id" =>  7, "name" => 'Inner 1.2'),
    (object) array("parent_id" => 4, "id" =>  8, "name" => 'Inner 4.1'),
    (object) array("parent_id" => 5, "id" =>  9, "name" => 'Inner 5.2'),
    (object) array("parent_id" => 5, "id" => 10, "name" => 'Inner 5.2'),
    (object) array("parent_id" => 5, "id" => 11, "name" => 'Inner 5.3'),

);

$allPosts = $posts;
foreach ($posts as $post) {
    if ($post->parent_id == 0){ //0 means highest level, no parent
        echo $post->name . ' : ';
        $current_id = $post->id;

        foreach ($allPosts as $childPost){
            if($childPost->parent_id == $current_id){
                echo $childPost->name . ', ';
            }
        }
        echo '<br>';
    }
}

输出以下内容:

Outer 1 : Inner 1.1, Inner 1.2, 
Outer 2 : 
Outer 3 : 
Outer 4 : Inner 4.1, 
Outer 5 : Inner 5.2, Inner 5.2, Inner 5.3, 

如果问题不在您的代码中(对我来说没问题,并且在我的计算机上也能按预期工作),则可能是$posts数组的结构。尝试对变量使用var_dump以查看它们是否包含不完整或不正确的数据。