doushaju4901 2014-12-29 06:07
浏览 32
已采纳

如何使用php获取父项及其子项,子项类详细信息

I want to display the a;; level categories.

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;
}

I Used the above to code to display the all category level.Here I get the following output

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
                                        )

                                )

                        )

                )

        )

)

Now i want to change

 [_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
                                        )

                                )

To

 [_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
                                        )

                                )

How to i do . Please help me.

  • 写回答

2条回答 默认 最新

  • donglankui1263 2014-12-29 06:19
    关注

    If I understood your question right, You want to rename all your children's children as _subchildren. So, I am guessing that could be done by checking the value of the parent variable.
    Try replacing the if condition block in the function with this -

    if (!empty($children)) {
        if($parent == 0){
            $d['_children'] = $children;
        }else{
            $d['_subchildren'] = $children;
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd