PHP 클래스 ftp\File

Represents an FTP file.
파일 보기 프로젝트 열기: prggmr/xpspl

보호된 프로퍼티들

프로퍼티 타입 설명
$_name string Filename
$_path string Full path to the file.
$_transfer_mode integer Mode the file must be transfered in.

공개 메소드들

메소드 설명
__construct ( string $name, $mode = FTP_BINARY ) : void Constructs a new file.
get_full_path ( ) : string Returns the full path.
get_name ( ) : string Returns the filename.
get_path ( ) : string Returns the file path.
get_transfer_mode ( ) : integer Returns the transfer mode.

메소드 상세

__construct() 공개 메소드

Constructs a new file.
public __construct ( string $name, $mode = FTP_BINARY ) : void
$name string Filename
리턴 void

get_full_path() 공개 메소드

Returns the full path.
public get_full_path ( ) : string
리턴 string

get_name() 공개 메소드

Returns the filename.
public get_name ( ) : string
리턴 string

get_path() 공개 메소드

Returns the file path.
public get_path ( ) : string
리턴 string

get_transfer_mode() 공개 메소드

Returns the transfer mode.
public get_transfer_mode ( ) : integer
리턴 integer

프로퍼티 상세

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

Filename
protected string $_name
리턴 string

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

Full path to the file.
protected string $_path
리턴 string

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

Mode the file must be transfered in.
protected int $_transfer_mode
리턴 integer