您好,欢迎来到思海网络,我们将竭诚为您提供优质的服务! 诚征网络推广 | 网站备案 | 帮助中心 | 软件下载 | 购买流程 | 付款方式 | 联系我们 [ 会员登录/注册 ]
促销推广
客服中心
业务咨询
有事点击这里…  531199185
有事点击这里…  61352289
点击这里给我发消息  81721488
有事点击这里…  376585780
有事点击这里…  872642803
有事点击这里…  459248018
有事点击这里…  61352288
有事点击这里…  380791050
技术支持
有事点击这里…  714236853
有事点击这里…  719304487
有事点击这里…  1208894568
有事点击这里…  61352289
在线客服
有事点击这里…  531199185
有事点击这里…  61352288
有事点击这里…  983054746
有事点击这里…  893984210
当前位置:首页 >> 技术文章 >> 文章浏览
技术文章

php无限级分类(带层深)算法

添加时间:2014-1-9 17:46:30  添加: 思海网络 

 分享一个利用数组来实现无限级分类php类程序,有需要的朋友可参考,这里就不多说什么了直接复制上代码。

  代码:

  <?php

  $cates = array(

  array(

  'cid'   => 1,

  'cname' => '新闻',

  'pid'   => 0

  ),

  array(

  'cid'   => 2,

  'cname' => '通知',

  'pid'   => 0

  ),

  array(

  'cid'   => 3,

  'cname' => '国内新闻',

  'pid'   => 1

  ),

  array(

  'cid'   => 4,

  'cname' => '国际新闻',

  'pid'   => 1

  ),

  array(

  'cid'   => 5,

  'cname' => '北京新闻',

  'pid'   => 3

  ),

  array(

  'cid'   => 6,

  'cname' => '上海新闻',

  'pid'   => 3

  ),

  array(

  'cid'   => 7,

  'cname' => '紧急通知',

  'pid'   => 2

  ),

  array(

  'cid'   => 8,

  'cname' => '一般通知',

  'pid'   => 2

  ),

  );

  /**

  * 生成菜单

  *

  * @param array $data 原始数据

  * @param integer $pid 当前分类的父id

  * @return array 处理后数据

  */

  function createMenuTree($data = array(), $pid = 0)

  {

  if (empty($data))

  {

  return array();

  }

  static $level = 0;

  $returnArray = array();

  foreach ($data as $node)

  {

  if ($node['pid'] == $pid)

  {

  $returnArray[] = array(

  'cid'   => $node['cid'],

  'cname' => $node['cname'],

  'level' => $level

  );

 

  if (hasChild($node['cid'], $data))

  {

  $level++;

  $returnArray = array_merge($returnArray, createMenuTree($data, $node['cid']));

  $level--;

  }

  }

  }

  return $returnArray;

  }

  /**

  * 检查是否有子分类

  *

  * @param integer $cid 当前分类的id

  * @param array $data 原始数据

  * @return boolean 是否有子分类

  */

  function hasChild($cid, $data)

  {

  $hasChild = false;

  foreach ($data as $node)

  {

  if ($node['pid'] == $cid)

  {

  $hasChild = true;

  break;

  }

  }

  return $hasChild;

  }

  header('Content-Type: text/html; charset=utf-8');

  $result = createMenuTree($cates);

  foreach ($result as $row)

  {

  for ($i = 0; $i < $row['level']; $i++)

  {

  echo "t";

  }

  echo $row['cname'] . "n";

  }

  ?>

关键字:php、无限级分类、类程序

分享到:

顶部 】 【 关闭
版权所有:佛山思海电脑网络有限公司 ©1998-2024 All Rights Reserved.
联系电话:(0757)22630313、22633833
中华人民共和国增值电信业务经营许可证: 粤B1.B2-20030321 备案号:粤B2-20030321-1
网站公安备案编号:44060602000007 交互式栏目专项备案编号:200303DD003  
察察 工商 网安 举报有奖  警警  手机打开网站