《CMS教程:phpcms v9如何获得数据库模型》要点:
本文介绍了CMS教程:phpcms v9如何获得数据库模型,希望对您有用。如果有疑问,可以联系我们。
相关主题:PHPCMS教程
导读:工作中遇到的一个问题,如何获得栏目下的模型,现在代码分享出来,供大家学习获得模型数据库$siteids = getcache('category_content&...
工作中遇到的一个问题,如何获得栏目下的模型,现在代码分享出来,供大家学习
获得模型数据库
$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);
$tablename = $this->content_db->db_tablepre.$MODEL[$modelid]['tablename'];
转载请注明本页网址:
http://www.vephp.com/jiaocheng/6019.html