Home php教程 php手册 PHP如何通过传引用的思想实现无限分类(代码简单)

PHP如何通过传引用的思想实现无限分类(代码简单)

Jun 06, 2016 pm 07:41 PM

本文给大家介绍php引用传递,如何通过引用出的思想实现无限分类,代码超简单,需要的朋友可以借鉴下

无限级分类,主要是通过储存上级分类的id以及分类路径来实现

在我的Simpla中,,用到了无限分类,使用了PHP的传引用思想实现无限分类的方法,可以完美展示类似这样的分类模式。

id   pid   name
1    0     四川
2    0     重庆
3    1     成都
4    1     绵阳
5    3     高新区

代码如下所示:

/** * 数组变成无限级分类--传引用思想 * @param array $items * @return array */ public static function get_tree($orig) { //解决下标不是1开始的问题 $items = array(); foreach ($orig as $key => $value) { $items[$value[‘id‘]] = $value; } //开始组装 $tree = array(); foreach ($items as $key => $item) { if ($item[‘pid‘] == 0) { //为0,则为1级分类 $tree[] = &$items[$key]; } else { if (isset($items[$item[‘pid‘]])) { //存在值则为二级分类 $items[$item[‘pid‘]][‘child‘][] = &$items[$key]; //传引用直接赋值与改变 } else { //至少三级分类 //由于是传引用思想,这里将不会有值 $tree[] = &$items[$key]; } } } return $tree; }

以上内容很简单吧,如有错误或者更好的方法,希望可以相互交流。谢谢。!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)