0
我已經加載了Zend Gdata庫,並使用一個示例在我的Google電子表格中成功讀取了行,但updateCell示例始終失敗。Zend Gdata中的updateCell
檢查updateCell時似乎不在庫中。
有沒有人有這個問題?我使用Zend的GData-1.12.0
$row=1;
$col=1;
$inputValue=99;
$worksheetId="od6";
$googleDocs->updateCell (1, 1, 'test', $Key, $worksheetId);
$query = new Zend_Gdata_Spreadsheets_DocumentQuery();
$query->setSpreadsheetKey($key);
$feed = $spreadSheetService->getWorksheetFeed($query);
$updatedCell = updateCell($row,$col,$inputValue,$Key,$worksheetId);
貌似功能是那裏的API文檔-http://framework.zend.com/apidoc/1.12/db_Zend_Gdata_Spreadsheets.html。可能你是用錯誤的對象調用它? – janenz00