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中文網其他相關文章!