thinkphp实现面包屑导航(当前位置)例子分享_php实例

WBOY
Release: 2016-06-07 17:19:53
Original
1102 people have browsed it

以前栏目很少,就用死办法做的(首页 -> 栏目的名字),现在栏目多了,渐渐二级栏目,三级栏目也来了,这样的方式显然不太合适,于是就改进了一下。也不难,利用一个递归函数就可以了。

使用例子:

复制代码 代码如下:

//当前位置-第一个参数 catid为当前栏目的id,第二个参数为文章的标题,调用栏目当前位置时第二个参数为空即可。
$this->assign("now_here",$this->now_here($catid,$res['title']));

实现代码:

复制代码 代码如下:

//解释一下,栏目表category中的catid为栏目id,catname为栏目名称,asmenu为栏目父级的id,当为顶级栏目时,asmenu为0 。
protected function now_here($catid,$ext=''){
 $cat = M("Category");
 $here = '首页';
 $uplevels = $cat->field("catid,catname,asmenu")->where("catid=$catid")->find();
 if($uplevels['asmenu'] != 0)
 $here .= $this->get_up_levels($uplevels['asmenu']);
 $here .= ' -> '.$uplevels['catname']."";
 if($ext != '') $here .= ' -> '.$ext;
 return $here;
}
protected function get_up_levels($id){
 $cat = M("Category");
 $here = '';
 $uplevels = $cat->field("catid,catname,asmenu")->where("catid=$id")->find();
 $here .= ' -> '.$uplevels['catname']."";
 if($uplevels['asmenu'] != 0){
  $here = $this->get_up_levels($uplevels['asmenu']).$here;
 }
 return $here;
}



附:另一个例子

复制代码 代码如下:

class IndexAction extends Action {

    public function cat() {
  load('extend');  // 加载 extend.php 文件
  // 取出所有的分类
  $Categories = M('Categories')->select();

  $nav_array = array();
  $this->getNavCrumbs($Categories, 2120, $nav_array);
  dump($nav_array);

  // 取出所有分类(并构造成一棵树)
  // $CategoryTree = list_to_tree($Categories, 'categories_id', 'parent_id');
    }

    /**
     * 根据分类id向上回溯构造面包屑
     * @param  $Categories 由所有分类组成的数组
     * @param  $categoryId 要进行向上回溯用的分类id 
     * @param  $navCrumbs 用于保存结果的数组,传入一个空数组就好
     */
    public function getNavCrumbs($Categories, $categoryId, &$navCrumbs) {
     $category = list_search( $Categories, array('categories_id'=>$categoryId) ) ;
     $category = $category[0];
     $parent_id = $category['parent_id'];
     $categories_id = $category['categories_id'];

     if( $parent_id != 0 ) {  // 这里的 0 是根节点id(root节点id)
      $this->getNavCrumbs($Categories, $parent_id, $navCrumbs);
     }

     $navCrumbs[$categories_id] = $category;
    }

}


Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!