《CMS教程:phpcms v9根据栏目catid获取模型数据库》要点:
本文介绍了CMS教程:phpcms v9根据栏目catid获取模型数据库,希望对您有用。如果有疑问,可以联系我们。
相关主题:PHPCMS教程
导读:phpcms v9根据栏目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->content_db->set_model($modelid);
$this->content_db->table_name = $this->content_db->table_name.'_data';
$tablename = $this->content_db->db_tablepre.$MODEL[$modelid]['tablename'];
转载请注明本页网址:
http://www.vephp.com/jiaocheng/5759.html