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中文网其他相关文章!