The following classes are all returned by tagSearch() and
userSearch():
Represents a set of Results from a Flickr search.
Note
Implements the SeekableIterator interface for easy
iteration (e.g., using foreach()), as well as direct
access to a specific result using seek().
Table 149. Zend_Service_Flickr_ResultSet Properties
| Name | Type | Description |
|---|---|---|
| totalResultsAvailable | int | Total Number of Results available |
| totalResultsReturned | int | Total Number of Results returned |
| firstResultPosition | int | The offset in the total result set of this result set |
int totalResults();
Returns the total number of results in this result set.
A single Image result from a Flickr query
Table 150. Zend_Service_Flickr_Result Properties
| Name | Type | Description |
|---|---|---|
| id | string | Image ID |
| owner | string | The photo owner's NSID. |
| secret | string | A key used in url construction. |
| server | string | The servername to use for URL construction. |
| title | string | The photo's title. |
| ispublic | string | The photo is public. |
| isfriend | string | The photo is visible to you because you are a friend of the owner. |
| isfamily | string | The photo is visible to you because you are family of the owner. |
| license | string | The license the photo is available under. |
| dateupload | string | The date the photo was uploaded. |
| datetaken | string | The date the photo was taken. |
| ownername | string | The screenname of the owner. |
| iconserver | string | The server used in assembling icon URLs. |
| Square | Zend_Service_Flickr_Image | A 75x75 thumbnail of the image. |
| Thumbnail | Zend_Service_Flickr_Image | A 100 pixel thumbnail of the image. |
| Small | Zend_Service_Flickr_Image | A 240 pixel version of the image. |
| Medium | Zend_Service_Flickr_Image | A 500 pixel version of the image. |
| Large | Zend_Service_Flickr_Image | A 640 pixel version of the image. |
| Original | Zend_Service_Flickr_Image | The original image. |




