destoon 读取当前栏目名称
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-05 16:38:24 浏览: 评论:0
- function cat_name($CAT) {
- global $MODULE, $db;
- if(!$CAT) return '';
- $arrparentids = $CAT['catid'];
- $arrparentid = explode(',', $arrparentids);
- $pos = '';
- $target = $target ? ' target="_blank"' : '';
- $CATEGORY = array();
- $result = $db->query("SELECT catid,moduleid,catname,linkurl FROM {$db->pre}category WHERE catid=($arrparentids)");
- while($r = $db->fetch_array($result)) {
- $CATEGORY[$r['catid']] = $r;
- }
- foreach($arrparentid as $catid) {
- if(!$catid || !isset($CATEGORY[$catid])) continue;
- $pos .= ''.$CATEGORY[$catid]['catname'].'';
- }
- return $pos;
- }
在include/global.func.php里面插入这段代码,前台可以用{cat_name($CAT)}来获取当前栏目名称.
Tags: destoon 当前栏目
- 上一篇:destoon程序转移服务器后,搜索汉字出现乱码
- 下一篇:destoon搬家教程
相关文章
- ·Destoon简单使用教程一(2013-11-15)
- ·Destoon简单使用教程二(2013-11-15)
- ·Destoon简单使用教程三(2013-11-15)
- ·Destoon简单使用教程四(2013-11-15)
- ·Destoon简单使用教程五(2013-11-15)
- ·Destoon简单使用教程六(2013-11-15)
- ·Destoon简单使用教程七(2013-11-15)
- ·Destoon简单使用教程八(2013-11-15)
- ·Destoon简单使用教程九(2013-11-15)
- ·Destoon简单使用教程十(2013-11-15)
- ·DESTOON 新增模块的方法!(2014-01-10)
- ·destoon 公告栏的调用标签和模板文件(2014-01-10)
- ·destoon需要设置可写权限的目录和文件(2014-01-10)
- ·destoon程序转移服务器后,搜索汉字出现乱码(2014-01-10)
- ·destoon搬家教程(2014-06-05)
- ·destoon程序 禁止同一个会员发布重复信息(2014-06-05)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)