Using Zend GData, How do i get a worksheet cell index by looking for its value?
问题 suppose i have a cell in a worksheet that has a value of "last data cell" is this the correct way to get the index of this cell (i.e A5) using Zend GData ? $query = new Zend_Gdata_Spreadsheets_CellQuery(); $query->setSpreadsheetKey($this->_spreadsheetKey); $query->setWorksheetId($worksheet); $cellFeed = $this->_spreadsheetService->getCellFeed($query); foreach($cellFeed as $cellEntry) { $row = $cellEntry->getCell()->getRow(); $col = $cellEntry->getCell()->getColumn(); $val = $cellEntry-