array = $array; $this->count = count($array); } /** * Returns an array of items for a page. * * @param int $offset Page offset * @param int $itemCountPerPage Number of items per page * @return array */ public function getItems($offset, $itemCountPerPage) { return array_slice($this->array, $offset, $itemCountPerPage); } /** * Returns the total number of rows in the array. * * @return int */ public function count() { return $this->count; } }