PHP 클래스 Flow\Request

상속: implements flow\RequestInterface
파일 보기 프로젝트 열기: flowjs/flow-php-server 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$file array File
$params array Request parameters

공개 메소드들

메소드 설명
__construct ( array | null $params = null, array | null $file = null ) Constructor
getCurrentChunkNumber ( ) : integer | null Get current uploaded chunk number, starts with 1
getCurrentChunkSize ( ) : integer | null Get current uploaded chunk size
getDefaultChunkSize ( ) : integer | null Get default chunk size
getFile ( ) : array | null Return $_FILES request
getFileName ( ) : string | null Get uploaded file name
getIdentifier ( ) : string | null Get file unique identifier
getParam ( string $name ) : string | integer | null Get parameter value
getRelativePath ( ) : string | null Get file relative path
getTotalChunks ( ) : integer | null Get total chunks number
getTotalSize ( ) : integer | null Get total file size in bytes
isFustyFlowRequest ( ) : boolean Checks if request is formed by fusty flow

메소드 상세

__construct() 공개 메소드

Constructor
public __construct ( array | null $params = null, array | null $file = null )
$params array | null
$file array | null

getCurrentChunkNumber() 공개 메소드

Get current uploaded chunk number, starts with 1
public getCurrentChunkNumber ( ) : integer | null
리턴 integer | null

getCurrentChunkSize() 공개 메소드

Get current uploaded chunk size
public getCurrentChunkSize ( ) : integer | null
리턴 integer | null

getDefaultChunkSize() 공개 메소드

Get default chunk size
public getDefaultChunkSize ( ) : integer | null
리턴 integer | null

getFile() 공개 메소드

Return $_FILES request
public getFile ( ) : array | null
리턴 array | null

getFileName() 공개 메소드

Get uploaded file name
public getFileName ( ) : string | null
리턴 string | null

getIdentifier() 공개 메소드

Get file unique identifier
public getIdentifier ( ) : string | null
리턴 string | null

getParam() 공개 메소드

Get parameter value
public getParam ( string $name ) : string | integer | null
$name string
리턴 string | integer | null

getRelativePath() 공개 메소드

Get file relative path
public getRelativePath ( ) : string | null
리턴 string | null

getTotalChunks() 공개 메소드

Get total chunks number
public getTotalChunks ( ) : integer | null
리턴 integer | null

getTotalSize() 공개 메소드

Get total file size in bytes
public getTotalSize ( ) : integer | null
리턴 integer | null

isFustyFlowRequest() 공개 메소드

Checks if request is formed by fusty flow
public isFustyFlowRequest ( ) : boolean
리턴 boolean

프로퍼티 상세

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

File
protected array $file
리턴 array

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

Request parameters
protected array $params
리턴 array