PHP 클래스 Gc\View\Stream

Based in large part on the example at http://www.php.net/manual/en/function.stream-wrapper-register.php
파일 보기 프로젝트 열기: gotcms/gotcms 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$data string Data for streaming.
$mode string Stream mode.
$path string Current stream path.
$position integer Current stream position.
$stat array Stream stats.

공개 메소드들

메소드 설명
__call ( string $method, array $args ) : void Call method
register ( string $name = 'zend.view', boolean $overwrite = true ) : void Register stream wrapper
streamEof ( ) : boolean Tells if we are at the end of the stream.
streamOpen ( string $path, string $mode ) : boolean Opens the script file and converts markup.
streamRead ( integer $count ) : string Reads from the stream.
streamSeek ( integer $offset, integer $whence ) : boolean Seek to a specific point in the stream.
streamStat ( ) : array Stream statistics.
streamTell ( ) : integer Tells the current position in the stream.
streamWrite ( string $data ) : integer Write in the stream
urlStat ( string $path ) : array Retrieve information about a file Always return empty array because data come from the database

보호된 메소드들

메소드 설명
removeWrapperName ( string $path ) : string Remove stream wrapper name

메소드 상세

__call() 공개 메소드

Call method
public __call ( string $method, array $args ) : void
$method string Method
$args array Arguments
리턴 void

register() 공개 정적인 메소드

Register stream wrapper
public static register ( string $name = 'zend.view', boolean $overwrite = true ) : void
$name string Name
$overwrite boolean Overwrite wrapper
리턴 void

removeWrapperName() 보호된 메소드

Remove stream wrapper name
protected removeWrapperName ( string $path ) : string
$path string Path
리턴 string

streamEof() 공개 메소드

Tells if we are at the end of the stream.
public streamEof ( ) : boolean
리턴 boolean

streamOpen() 공개 메소드

Opens the script file and converts markup.
public streamOpen ( string $path, string $mode ) : boolean
$path string Path
$mode string Mode
리턴 boolean

streamRead() 공개 메소드

Reads from the stream.
public streamRead ( integer $count ) : string
$count integer Count
리턴 string

streamSeek() 공개 메소드

Seek to a specific point in the stream.
public streamSeek ( integer $offset, integer $whence ) : boolean
$offset integer Offset
$whence integer Whence
리턴 boolean

streamStat() 공개 메소드

Stream statistics.
public streamStat ( ) : array
리턴 array

streamTell() 공개 메소드

Tells the current position in the stream.
public streamTell ( ) : integer
리턴 integer

streamWrite() 공개 메소드

Write in the stream
public streamWrite ( string $data ) : integer
$data string Data
리턴 integer

urlStat() 공개 메소드

Retrieve information about a file Always return empty array because data come from the database
public urlStat ( string $path ) : array
$path string Path
리턴 array

프로퍼티 상세

$data 보호되어 있는 정적으로 프로퍼티

Data for streaming.
protected static string $data
리턴 string

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

Stream mode.
protected string $mode
리턴 string

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

Current stream path.
protected string $path
리턴 string

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

Current stream position.
protected static int $position
리턴 integer

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

Stream stats.
protected array $stat
리턴 array