2012-11-04 61 views
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); 
+0

貌似功能是那裏的API文檔-http://framework.zend.com/apidoc/1.12/db_Zend_Gdata_Spreadsheets.html。可能你是用錯誤的對象調用它? – janenz00

回答

1

的updateCell方法是$ spreadSheetService的一部分,你需要在調用updateCell的前面加上$ spreadSheetService->。

$updatedCell = $spreadSheetService->updateCell($row,$col,$inputValue,$Key,$worksheetId);