首页 > 网站 > 建站经验 > 正文

phpcms v9如何获得数据库模型

2024-04-25 20:35:26
字体:
来源:转载
供稿:网友

工作中遇到的一个问题,如何获得栏目下的模型,现在代码分享出来,供大家学习

获得模型数据库

$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'];

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表