繁体   English   中英

如何使用PHP获取父母及其子女,子女类别详细信息

[英]how to get the parent,and its children ,children category details using php

我想显示一个;; 级别类别。

function fn_blog_tree_format(Array $data, $parent = 0) { 
    $tree = array();
    foreach ($data as $d) {
        if ($d['parentid'] == $parent) {
            $children = fn_blog_tree_format($data, $d['id']);
            if (!empty($children)) {
                $d['_children'] = $children;

            }

            $tree[] = $d;
        }
    }


    return $tree;
}

我使用上面的代码来显示所有类别级别。在这里,我得到以下输出

Array
(
    [0] => Array
        (
            [id] => 1
            [categoryname] => php
            [slugurl] => core-php
            [parentid] => 0
            [description] => Lorem Ipsum is  simply dummy text of the printing and typesetting industry. Lorem Ipsum  has been the industry's standard dummy text ever since the 1500s, when  an unknown printer took a galley of type and scrambled it to make a type  specimen book. It has survived not only five centuries, but also the  leap into electronic typesetting, remaining essentially unchanged. It  was popularised in the 1960s with the release of Letraset sheets  containing Lorem Ipsum passages, and more recently with desktop  publishing software like Aldus PageMaker including versions of Lorem  Ipsum.
            [_children] => Array
                (
                    [0] => Array
                        (
                            [id] => 2
                            [categoryname] => yii
                            [slugurl] => yii
                            [parentid] => 1
                            [description] => Contrary to popular belief, Lorem Ipsum is not simply random text. It  has roots in a piece of classical Latin literature from 45 BC, making it  over 2000 years old. Richard McClintock, a Latin professor at  Hampden-Sydney College in Virginia, looked up one of the more obscure  Latin words, consectetur, from a Lorem Ipsum passage, and going through  the cites of the word in classical literature, discovered the  undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33  of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by  Cicero, written in 45 BC. This book is a treatise on the theory of  ethics, very popular during the Renaissance. The first line of Lorem  Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section  1.10.32.
                            [_children] => Array
                                (
                                    [0] => Array
                                        (
                                            [id] => 4
                                            [categoryname] => demo
                                            [slugurl] => demo
                                            [parentid] => 2
                                            [description] => Lorem Ipsum is simply dummy text of the printing and  typesetting industry. Lorem Ipsum has been the industry's standard dummy  text ever since the 1500s, when an unknown printer took a galley of  type and scrambled it to make a type specimen book. It has survived not  only five centuries, but also the leap into electronic typesetting,  remaining essentially unchanged. It was popularised in the 1960s with  the release of Letraset sheets containing Lorem Ipsu
                                        )

                                )

                        )

                )

        )

)

现在我想改变

 [_children] => Array
                                (
                                    [0] => Array
                                        (
                                            [id] => 4
                                            [categoryname] => demo
                                            [slugurl] => demo
                                            [parentid] => 2
                                            [description] => Lorem Ipsum is simply dummy text of the printing and  typesetting industry. Lorem Ipsum has been the industry's standard dummy  text ever since the 1500s, when an unknown printer took a galley of  type and scrambled it to make a type specimen book. It has survived not  only five centuries, but also the leap into electronic typesetting,  remaining essentially unchanged. It was popularised in the 1960s with  the release of Letraset sheets containing Lorem Ipsu
                                        )

                                )

 [_subchildren] => Array
                                (
                                    [0] => Array
                                        (
                                            [id] => 4
                                            [categoryname] => demo
                                            [slugurl] => demo
                                            [parentid] => 2
                                            [description] => Lorem Ipsum is simply dummy text of the printing and  typesetting industry. Lorem Ipsum has been the industry's standard dummy  text ever since the 1500s, when an unknown printer took a galley of  type and scrambled it to make a type specimen book. It has survived not  only five centuries, but also the leap into electronic typesetting,  remaining essentially unchanged. It was popularised in the 1960s with  the release of Letraset sheets containing Lorem Ipsu
                                        )

                                )

我该怎么办。 请帮我。

我刚刚有一个简短的主意(但没有测试):您可以添加一个计数器。 首先将其设置为1,然后在循环中将其设置为1,然后再递增。 当它为1时,您执行$d['_children'] = $children; 否则(当它大于1时)执行$d['_subchildren'] = $children;

Redmint为每个父母重置计数器

如果我对您的问题的理解正确,那么您要将所有孩子的孩子重命名为_subchildren 因此,我猜测可以通过检查父变量的值来完成。
尝试以此替换函数中的if条件块-

if (!empty($children)) {
    if($parent == 0){
        $d['_children'] = $children;
    }else{
        $d['_subchildren'] = $children;
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM