PHP 클래스 Predis\Response\Iterator\MultiBulkIterator

This iterator does not support rewinding which means that the iteration, once consumed, cannot be restarted. Always make sure that the whole iteration is consumed (or dropped) to prevent protocol desynchronization issues.
저자: Daniele Alessandri ([email protected])
상속: implements Iterator, implements Countable, implements Predis\Response\ResponseInterface
파일 보기 프로젝트 열기: tillkruss/redis-object-cache

보호된 프로퍼티들

프로퍼티 타입 설명
$current
$position
$size

공개 메소드들

메소드 설명
count ( ) : integer Returns the number of items comprising the whole multibulk response.
current ( )
getPosition ( ) : integer Returns the current position of the iterator.
key ( )
next ( )
rewind ( )
valid ( )

보호된 메소드들

메소드 설명
getValue ( )

메소드 상세

count() 공개 메소드

This method should be used instead of iterator_count() to get the size of the current multibulk response since the former consumes the iteration to count the number of elements, but our iterators do not support rewinding.
public count ( ) : integer
리턴 integer

current() 공개 메소드

public current ( )

getPosition() 공개 메소드

Returns the current position of the iterator.
public getPosition ( ) : integer
리턴 integer

getValue() 추상적인 보호된 메소드

abstract protected getValue ( )

key() 공개 메소드

public key ( )

next() 공개 메소드

public next ( )

rewind() 공개 메소드

public rewind ( )

valid() 공개 메소드

public valid ( )

프로퍼티 상세

$current 보호되어 있는 프로퍼티

protected $current

$position 보호되어 있는 프로퍼티

protected $position

$size 보호되어 있는 프로퍼티

protected $size