要的效果: 當前所在位置: 您當前所在位置:首頁>>產品>>蒲公英系列>>服裝管理系統>>產品詳情 但放入調用標簽: 您當前所在位置:<a href="">首頁</a>>>{catpos($r['catid'])}產品詳情 得到的效果是: 首頁>>產品蒲公英系列>>服裝管理系統>>產品詳情 少了>> 汗,看了下global.func.php文件發現這段: function catpos($catid, $urlrule = '') { global $CATEGORY; if(!isset($CATEGORY[$catid])) return ''; $pos = ''; $arrparentid = array_filter(explode(',', $CATEGORY[$catid]['arrparentid'].','.$catid)); foreach($arrparentid as $catid) { if($urlrule) eval("\$url = \"$urlrule\";"); else $url = $CATEGORY[$catid]['url']; $pos .= '<a href="'.$url.'">'.$CATEGORY[$catid]['catname'].'</a>'.'>>'; } return $pos; } 紅色部分以前是沒有的!加上去後,得以實現想要的效果!