ftp_size 返回指定文件的大小

发表日期:2021-07-01 08:56:47 | 来源: | | 浏览(388) 分类:FTP 函数

ftp_size

(PHP 4, PHP 5, PHP 7, PHP 8)

ftp_size返回指定文件的大小

说明

ftp_size(resource $ftp, string $filename): int

ftp_size() 函数返回指定文件的大小(以字节为单位)。

注意:

不是所有服务器都支持该功能。

参数

ftp

FTP 连接的链接标识符。

filename

远程文件。

返回值

成功时返回文件大小,错误返回 -1 。

范例

示例 #1 ftp_size() 示例

<?php 
$file = 'somefile.txt';
// 简单基本连接$conn_id = ftp_connect($ftp_server);
// 使用用户名和密码进行登录$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// 获取 $file 文件大小$res = ftp_size($conn_id, $file);
if ($res != -1) {
    echo "size of $file is $res bytes";
}
 else {
    echo "couldn't get the size";
}
// 关闭连接ftp_close($conn_id);
?>

参见

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。