PHP の ftp_size() 関数

WBOY
WBOY転載
2023-09-02 16:29:061344ブラウズ

PHP の ftp_size() 関数

ftp_size() 関数は、FTP サーバー上の特定のファイルのサイズを取得するために使用されます。

構文

ftp_size(conn, myfile)

パラメータ

  • conn - FTP接続

  • ##myfile - サーバー ファイル

戻り値

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

以上がPHP の ftp_size() 関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。