使用Moodle 1.9
,我已经成功地能够通过 php 注册用户
$user = get_record("user", "id", $mqval['id']);
$course = get_record("course", "id", $cid);
if ( ! enrol_into_course($course, $user, 'manuel')) {
} else {
//echo 'success';
}
现在我想以同样的方式取消注册用户。我尝试使用unenrol_user
,但没有用。我也尝试过role_unassign
,但没有成功。