Yii2中关联查询简单用法示例
程序员文章站
2024-04-03 19:35:58
本文实例讲述了yii2中关联查询用法。分享给大家供大家参考,具体如下:
有两张表,post和category,post.cate_id对应category.id
使用g...
本文实例讲述了yii2中关联查询用法。分享给大家供大家参考,具体如下:
有两张表,post和category,post.cate_id对应category.id
使用gii上升这两张表的model
然后post的model中有如下代码
public function getcate() { return $this->hasone(category::classname(), ['id' => 'cate_id']); }
在post这个model最下面在添加如下方法即可获取关联表内容
public static function getpostsbycategory($cate_id) { return post::find() ->joinwith('cate') ->where(['post.cate_id'=>$cate_id]) ->asarray() ->all(); }
更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于yii框架的php程序设计有所帮助。