Yii 多表关联relations
1,首先多表关联是在models/xx.php的relations里配置的。而且是互配,但有区别。
格式:
‘VarName’=>array(‘RelationType’, ‘ClassName’, ‘ForeignKey’, …additional options)
需要弄清楚的几点:
1,VarName指什么? 详见下面例2。
2,RelationType。一共有4种,分别为self::HAS_MANY, self::BELONGS_TO,[……]