Добавить элементы в отношение Phalcon Many-to-Many
У меня есть две модели во многих отношениях. Давайте используем в качестве примера лекторов и студентов. class Lecturer { public function initialize() { $this->hasMany('studentId', 'Model\Entity\LecturerStudent', 'studentId', ['alias' => 'LecturerStudent']); $this->hasManyToMany( 'lecturerId', 'Model\Entity\LecturerStudent', 'lecturerId', 'studentId', 'Model\Entity\Student', 'studentId', ['alias' => 'Students'] ); } } class LecturerStudent { public function initialize() { $this->belongsTo('studentId', 'Model\Entity\Student', 'studentId', ['alias' => 'Student']); […]