We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b318d4d + 3ff817e commit 0b1a7e2Copy full SHA for 0b1a7e2
src/Google/Spreadsheet/ListFeed.php
@@ -113,4 +113,22 @@ public function getEntries()
113
return $rows;
114
}
115
116
+ public function getTotalResults()
117
+ {
118
+ $xml = $this->xml->children('openSearch', true);
119
+ return intval($xml->totalResults);
120
+ }
121
+
122
+ public function getItemsPerPage()
123
124
125
+ return intval($xml->itemsPerPage);
126
127
128
+ public function getStartIndex()
129
130
131
+ return intval($xml->startIndex);
132
133
134
0 commit comments