PHP 클래스 FtpClient\FtpWrapper

저자: Nicolas Tallefourtane ([email protected])
파일 보기 프로젝트 열기: nicolab/php-ftp-client 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$conn resource The connection with the server

공개 메소드들

메소드 설명
__call ( string $function, array $arguments ) : mixed Forward the method call to FTP functions
__construct ( &$connection ) Constructor.
connect ( string $host, integer $port = 21, integer $timeout = 90 ) : resource Opens a FTP connection
ssl_connect ( string $host, integer $port = 21, integer $timeout = 90 ) : resource Opens a Secure SSL-FTP connection

메소드 상세

__call() 공개 메소드

Forward the method call to FTP functions
public __call ( string $function, array $arguments ) : mixed
$function string
$arguments array
리턴 mixed

__construct() 공개 메소드

Constructor.
public __construct ( &$connection )

connect() 공개 메소드

Opens a FTP connection
public connect ( string $host, integer $port = 21, integer $timeout = 90 ) : resource
$host string
$port integer
$timeout integer
리턴 resource

ssl_connect() 공개 메소드

Opens a Secure SSL-FTP connection
public ssl_connect ( string $host, integer $port = 21, integer $timeout = 90 ) : resource
$host string
$port integer
$timeout integer
리턴 resource

프로퍼티 상세

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

The connection with the server
protected resource $conn
리턴 resource