本文實例講述了thinkphp獲取欄目和文章當前位置的方法。分享給大家供大家參考。具體實現方法如下:
今天把博客一些細節完善了一下,其中修改了一下欄目頁和文章頁中的“當前位置”。以前欄目很少,就用死辦法做的(首頁 -> 欄目的名字),現在欄目多了,漸漸二級欄目,三級欄目也來了,這樣的方式顯然不太合適,於是就改進了一下。也不難,利用一個遞歸函數就可以了。
測試效果如下圖所示:
查看源文件效果:復制代碼 代碼如下:<a href="http://www.bkjia.com">首頁</a> -> <a href="/cat_2.html">PHP學習</a> -> <a href="/cat_9.html">ecshop</a> -> <a href="/cat_13.html">ecshop二次開發</a> -> ecshop加入百度地圖,支持周邊標記
復制代碼 代碼如下://當前位置-第一個參數 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 = '<a href="http://www.bkjia.com">首頁</a>';
$uplevels = $cat->field("catid,catname,asmenu")->where("catid=$catid")->find();
if($uplevels['asmenu'] != 0)
$here .= $this->get_up_levels($uplevels['asmenu']);
$here .= ' -> <a href="/cat_'.$uplevels['catid'].'.html">'.$uplevels['catname']."</a>";
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 .= ' -> <a href="/cat_'.$uplevels['catid'].'.html">'.$uplevels['catname']."</a>";
if($uplevels['asmenu'] != 0){
$here = $this->get_up_levels($uplevels['asmenu']).$here;
}
return $here;
}
希望本文所述對大家的PHP程序設計有所幫助。