dounuo8797 2014-04-01 07:35
浏览 47
已采纳

PHP中的N级层次结构

i've N-level of categories in MySql..

id name parent
1  movie  0 
2  bollywood 1 
3  Hollywood 2 
4  Serial    0 
5  Star plus 4 
6  Sony      4 

now i want to show in Movie Table like this

Tv Serial Name         Category

 Mahabharat            StarPlus-> Serial

how to show that ??

  • 写回答

1条回答 默认 最新

  • doufeng5059 2014-04-01 07:44
    关注

    I assume the TV Series Mahabharat had the category_id 4.

    Once you have that you can iterate through the categories until you find a category with the parent 0.

    For example. :

    public function getCategories($record)
    {
        $category = "";
        $buildCategory = true;
        $id = $record['category_id'];
    
        while ($buildCategory)
        {
            $category = $this->getCategoryById($id); //Don't use query here, that's not efficient.
            if ($category['parent'] != 0) {
                $category .= $category['name'] . '->';
            } else {
                $category .= $category['name'];
                $buildCategory = false;
            }
        }
    
        return $category;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境