在 Zend Framework Google Calendar Api 的手册中,我找不到更新日期说明。
在文档中,我们有:
// Get the first event in the user's event list
$event = $eventFeed[0];
// Change the title to a new value
$event->title = $service->newTitle("Woof!");
// Upload the changes to the server
try {
$event->save();
} catch (Zend_Gdata_App_Exception $e) {
echo "Error: " . $e->getMessage();
}
但是我如何更新任何事件的 startDate 和 endDate ?