哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

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

?>

参见

打开 哈希空间 微信小程序中查看更佳