asimlqt / php-google-spreadsheet-client

A PHP library for accessing and manipulating Google Spreadsheets
Other
544 stars 152 forks source link

in SpreadsheetFeed.php : add getByID($FileID) #118

Closed MilkTeaD closed 8 years ago

MilkTeaD commented 8 years ago

/* * by id / public function getById($Id) { $idstring="https://spreadsheets.google.com/feeds/spreadsheets/private/full/$Id"; foreach($this->xml->entry as $entry) { if ($entry->id->__toString() == $idstring) { return new Spreadsheet($entry); } } return null; }

asimlqt commented 8 years ago

Thanks.