我已经有一些$ event->与一些现有与会者的与会者。 我想在此事件中添加新的EventAttendee,但看起来我的代码会破坏旧的与会者列表。
我试试
$attendeesx= $event->getAttendees();
$attendees = array_push($attendeesx,$newattendee);
$event->attendees = $attendees;
$service->events->update(MyCalendar, $event->getID(), $event);
不工作。无论如何我想添加,而不是用新的替换旧列表。 任何线索?
什么是additionalGuest?这是为了什么?
答案 0 :(得分:0)
array_push($attendeesx,$newattendee)
修改了$attendeesx
。比意味着返回值(int
)确实不应该分配给$attendees
。
此外,活动还有参加者的设定者,为什么不使用它呢? ;)