테스트 사이트 - 개발 중인 베타 버전입니다

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

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);

 

?>

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시판 목록

개발자팁

개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
글쓰기