PHP 클래스 Zend\Diactoros\RelativeStream

Wrapper for default Stream class, representing subpart (starting from given offset) of initial stream. It can be used to avoid copying full stream, conserving memory.
상속: implements Psr\Http\Message\StreamInterface
파일 보기 프로젝트 열기: zendframework/zend-diactoros 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( Psr\Http\Message\StreamInterface $decoratedStream, integer $offset ) Class constructor
__toString ( )
close ( )
detach ( )
eof ( )
getContents ( )
getMetadata ( $key = null )
getSize ( )
isReadable ( )
isSeekable ( )
isWritable ( )
read ( $length )
rewind ( )
seek ( $offset, $whence = SEEK_SET )
tell ( )
write ( $string )

메소드 상세

__construct() 공개 메소드

Class constructor
public __construct ( Psr\Http\Message\StreamInterface $decoratedStream, integer $offset )
$decoratedStream Psr\Http\Message\StreamInterface
$offset integer

__toString() 공개 메소드

public __toString ( )

close() 공개 메소드

public close ( )

detach() 공개 메소드

public detach ( )

eof() 공개 메소드

public eof ( )

getContents() 공개 메소드

public getContents ( )

getMetadata() 공개 메소드

public getMetadata ( $key = null )

getSize() 공개 메소드

public getSize ( )

isReadable() 공개 메소드

public isReadable ( )

isSeekable() 공개 메소드

public isSeekable ( )

isWritable() 공개 메소드

public isWritable ( )

read() 공개 메소드

public read ( $length )

rewind() 공개 메소드

public rewind ( )

seek() 공개 메소드

public seek ( $offset, $whence = SEEK_SET )

tell() 공개 메소드

public tell ( )

write() 공개 메소드

public write ( $string )