معادل Yii :

class Country extends CActiveRecord {
public function relation(){
return array(
'users' => array(self::HAS_MANY, 'User', 'country_id'),
'posts' => array(self::HAS_MANY, 'Post', 'post_id', 'through'=>'users'),
);
}
}

$posts = Country::model()->findByPk(1)->posts;