IT/php

php ftp_size - 주어진 파일의 크기를 반환합니다.

조원태 2017. 2. 25. 02:21
반응형

ftp_size - 주어진 파일의 크기를 반환합니다.

 

설명 ¶

 

int ftp_size ( resource $ftp_stream , string $remote_file )

ftp_size () 는 주어진 파일의 크기를 바이트 단위로 반환합니다.

 

참고 :

모든 서버가이 기능을 지원하는 것은 아닙니다.

매개 변수 ¶

 

ftp_stream

FTP 연결의 링크 식별자입니다.

 

remote_file

원격 파일.

 

반환 값 ¶

 

성공하면 파일 크기를 반환하고 오류가 발생하면 -1을 반환합니다.

 

예 ¶

 

Example # 1 ftp_size () 예제

 

<?php

 

$file = 'somefile.txt';

 

// set up basic connection

$conn_id = ftp_connect($ftp_server);

 

// login with username and password

$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

 

// get the size of $file

$res = ftp_size($conn_id, $file);

 

if ($res != -1) {

    echo "size of $file is $res bytes";

} else {

    echo "couldn't get the size";

}

 

// close the connection

ftp_close($conn_id);

 

?>

반응형