Google\Spreadsheet\CellEntry::getCellIdString PHP Method

getCellIdString() public method

public getCellIdString ( ) : string
return string
    public function getCellIdString()
    {
        return sprintf("R%sC%s", $this->row, $this->column);
    }

Usage Example

Example #1
0
 /**
  * Get the feed entries
  * 
  * @return array \Google\Spreadsheet\CellEntry
  */
 public function getEntries()
 {
     if (count($this->entries) > 0) {
         return $this->entries;
     }
     $postUrl = $this->getPostUrl();
     foreach ($this->xml->entry as $entry) {
         $cell = new CellEntry($entry, $postUrl);
         $this->entries[$cell->getCellIdString()] = $cell;
     }
     return $this->entries;
 }
All Usage Examples Of Google\Spreadsheet\CellEntry::getCellIdString