分享好友 资讯首页 频道列表

destoon系统,其他页面如何调用公司模块的分类名称

2018-06-20 13:200
 在自定义函数文件中根目录(api/extend.func.php)加入
function getcat($catid) {
   global $db;
   $catids=explode(',',$catid);
   $catid=$catids[1];
   $r=$db->get_one("select catname from {$db->pre}category where catid=".$catid);
   $catname=$r['catname'];
   return $catname;
}
调用方法 {getcat($t[catid])}
举报 0
收藏 0
评论 0
10649