ホームページ >バックエンド開発 >PHPチュートリアル >PHP の ftp_size() 関数
ftp_size() 関数は、FTP サーバー上の特定のファイルのサイズを取得するために使用されます。
ftp_size(conn, myfile)
conn - FTP接続
##myfile - サーバー ファイル
<?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 サイトの他の関連記事を参照してください。