Source for file SearchResult.php
Documentation is available at SearchResult.php
* Model for a search result
* @author Stephan Schmidt <schst@php.net>
* items that have been found
private $items = array ();
if (isset ($props['Items'])) {
$items = $props['Items'];
if (isset ($items['Item'][0 ])) {
$items = array ($items['Item']);
foreach ($items as $tmp) {
* iterate through the items
$it = new ArrayObject ($this->items);
Documentation generated on Mon, 11 Mar 2019 13:58:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|