《CMS教程:phpcms v9根据栏目catid获取栏目下最新文章的内容》要点:
本文介绍了CMS教程:phpcms v9根据栏目catid获取栏目下最新文章的内容,希望对您有用。如果有疑问,可以联系我们。
相关主题:PHPCMS教程
- public function show_cntent($catid)
- {
- $siteids = getcache('category_content', 'commons');
- $MODEL = getcache('model', 'commons');
- $siteid = $siteids[$catid];
- $CATEGORYS = getcache('category_content_'.$siteid, 'commons');
- $category = $CATEGORYS[$catid];
- $modelid = $category['modelid'];
- $this->db->set_model($modelid);
- $cid=$this->db->select(array('catid'=>$catid),'id,thumb',1,'inputtime DESC');
- $this->db->table_name = $this->db->table_name.'_data';
- $con=$this->db->get_one(array('id'=>$cid[0]['id']),'content');
- $arr[0]['content']=$con['content'];
- $arr[0]['thumb']=$cid[0]['thumb'];
- return $arr;
- }
转载请注明本页网址:
http://www.vephp.com/jiaocheng/5852.html