Guides
Tutorials
Paginator for arrays.
class ApiPlatform\State\Pagination\ArrayPaginator implements IteratorAggregate, `<a href="/docs/reference/State/Pagination/PaginatorInterface">ApiPlatform\State\Pagination\PaginatorInterface</a>`, Traversable, Countable, `<a href="/docs/reference/State/Pagination/PartialPaginatorInterface">ApiPlatform\State\Pagination\PartialPaginatorInterface</a>`
{
public __construct(array $results, int $firstResult, int $maxResults)
public getCurrentPage(): float
public getLastPage(): float
public getItemsPerPage(): float
public getTotalItems(): float
public count(): int
public getIterator(): Traversable
}
class ApiPlatform\State\Pagination\ArrayPaginator implements IteratorAggregate, `<a href="/docs/reference/State/Pagination/PaginatorInterface">ApiPlatform\State\Pagination\PaginatorInterface</a>`, Traversable, Countable, `<a href="/docs/reference/State/Pagination/PartialPaginatorInterface">ApiPlatform\State\Pagination\PartialPaginatorInterface</a>`
{
public __construct(array $results, int $firstResult, int $maxResults)
public getCurrentPage(): float
public getLastPage(): float
public getItemsPerPage(): float
public getTotalItems(): float
public count(): int
public getIterator(): Traversable
}
public __construct(array $results, int $firstResult, int $maxResults)
public __construct(array $results, int $firstResult, int $maxResults)
results | array | |
firstResult | int | |
maxResults | int |
Gets the current page number.Gets the current page number.
public getCurrentPage(): float
public getCurrentPage(): float
float
Gets last page.
public getLastPage(): float
public getLastPage(): float
float
Gets the number of items by page.Gets the number of items by page.
public getItemsPerPage(): float
public getItemsPerPage(): float
float
Gets the number of items in the whole collection.
public getTotalItems(): float
public getTotalItems(): float
float
public count(): int
public count(): int
int
public getIterator(): Traversable
public getIterator(): Traversable
Traversable