设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 手机 数据 公司
当前位置: 首页 > 运营中心 > 建站资源 > 经验 > 正文

PHPCMS v9获得栏目的指定字段

发布时间:2021-12-18 10:49 所属栏目:19 来源:互联网
导读:官方有个强大的方法:$CATEGORYS 官方这个方法是很强大,在内容模块(modules)的各个class里面都有声明这个东西(没写到global里面),大家可以去看看. 以下是我写的获取方法get_param,效果,实现获取指定站点的指定栏目的指定字段内容,或者当前栏目的全部字段值,代
官方有个强大的方法:$CATEGORYS
 
官方这个方法是很强大,在内容模块(modules)的各个class里面都有声明这个东西(没写到global里面),大家可以去看看.
 
以下是我写的获取方法get_param,效果,实现获取指定站点的指定栏目的指定字段内容,或者当前栏目的全部字段值,代码如下:
 
function get_param($cid = '',$field = '',$siteid = ''){
    emptyempty($cid) ? $catids = $catid : $catids = intval($cid);
    if (emptyempty($siteid)) $siteid = get_siteid();
    $category = getcache('category_content_'.$siteid,'commons');
    $cats = array();
    foreach($category as $id=>$cat) {
        $cat['siteid'] == $siteid ? $cats[$id] = $cat : null ;
    }  //Cuoxin.com
 
    return emptyempty($field) ? $cats[$catids] : $cats[$catids][$field];
}



(编辑:ASP站长网)

    网友评论
    推荐文章
      热点阅读