Adldap\Objects\Paginator::getIterator PHP Method

getIterator() public method

Get an iterator for the entries.
    public function getIterator()
    {
        $entries = array_slice($this->getResults(), $this->getCurrentOffset(), $this->getPerPage(), true);
        return new ArrayIterator($entries);
    }