代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
无限极分类
作者:
dezai
/ 发布于
2014/8/6
/
672
//非递归获取所有后代分类 function get_offspring($pids, $list) { $npid = array(); $offspring = array(); $has_child = true; while($has_child) { $has_child = false; foreach($list as $lk => $lv) { if(in_array($lv['pid'], $pids)) { $offspring[] = $lv; $npid[] = $lv['cid']; unset($list[$lk]); $has_child = true; } } $pids = $npid; } return $offspring; } //利用路径字段获取后辈分类 function get_offspring($pid) { $offspring = array(); $cats = $this->getList('cat_id,cat_name,parent_id,cat_path', array(), 0, -1); foreach($cats as $cv) { if(in_array($pid, explode(',', $cv['cat_path']))) { $offspring[] = $cv; } } return $offspring; } //更新后辈分类路径 function update_offspring_path($pid, $ppath) { if($ppath == ',') { $ppath = ''; } $offspring = $this->get_offspring($pid); foreach($offspring as $ov) { $ov['cat_path'] = substr($ov['cat_path'], 0, strlen($ov['cat_path'])-1); $old_path = explode(',', $ov['cat_path']); foreach($old_path as $oldk => $oldv) { if($oldv == $pid) { break; } unset($old_path[$oldk]); } $new_path = $ppath.implode(',', $old_path).','; if(!$this->update(array('cat_path'=>$new_path), array('cat_id'=>$ov['cat_id']))) { return false; } } return true; } //将列表整理为树形 function get_tree_list($pid, $arr, &$r) { foreach($arr as $k => $v) { if($v['parent_id'] == $pid) { if(isset($r[$pid]))//设置含有子类标记 { $r[$pid]['has_child'] = 1; } $v['cat_path'] = trim($v['cat_path']);//计算深度 $path_str = substr($v['cat_path'], 0, strlen($v['cat_path'])-1); if($path_str == '') { $v['deep'] = 0; } else { $v['deep'] = count(explode(',', $path_str)); } $v['format'] = str_repeat(' ', 6*$v['deep']);//计算缩进 $r[$v['cat_id']] = $v;//加入有序列表 unset($arr[$k]);//已加入 从无序列表中剔除 $this->get_tree_list($v['cat_id'], $arr, $r); } } }
试试其它关键字
无限极
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3