Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 ftp_size() 함수

<시간/>

ftp_size() 함수는 FTP 서버에 있는 특정 파일의 크기를 가져오는 데 사용됩니다.

구문

ftp_size(conn, myfile)

매개변수

  • 연결 - FTP 연결

  • 마이파일 - 서버 파일

반환

ftp_size() 함수는 성공 시 특정 파일의 크기를 바이트 단위로 반환합니다.

예시

다음은 "new.txt" 파일의 크기를 구하는 예입니다 -

<?php
   $ftp_server = "192.168.0.4";
   $ftp_user = "username";
   $ftp_pass = "gfhgfj236k";
   $conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
   $login = ftp_login($con, $ftp_user, $ftp_pass);
   $myfile = "new.txt";
   //size of $file
   $size = ftp_size($conn, $myfile);
   if ($size ! = -1) {
      echo "Size is $fsize bytes";
   } else {
      echo "Cannot get the file size!";
   }
   // close
   ftp_close($conn);
?>
닫기