1361. Class

1361.1. Zend\Paginator\SerializableLimitIterator

1361.1.1. Methods

1361.1.1.1. __construct

__construct()

Construct a ZendPaginatorSerializableLimitIterator

Parameters:
  • Iterator – Iterator to limit (must be serializable by un-/serialize)
  • int – Offset to first element
  • int – Maximum number of elements to show or -1 for all

:see :

1361.1.1.2. serialize

serialize()

@return string representation of the instance

1361.1.1.3. unserialize

unserialize()

@param string $data representation of the instance

Return type:void

1361.1.1.4. offsetGet

offsetGet()

Returns value of the Iterator

Parameters:int
Return type:mixed

1361.1.1.5. offsetSet

offsetSet()

Does nothing Required by the ArrayAccess implementation

Parameters:
  • int
  • mixed

1361.1.1.6. offsetExists

offsetExists()

Determine if a value of Iterator is set and is not NULL

Parameters:int
Return type:bool

1361.1.1.7. offsetUnset

offsetUnset()

Does nothing Required by the ArrayAccess implementation

Parameters:int