例
FTPサーバー上のファイルのサイズを取得します。
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
$login
= ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$file = "serverfile.txt";
// get size of $file
$fsize = ftp_size($ftp_conn, $file);
if
($fsize != -1)
{
echo "$file is $fsize bytes.";
}
else
{
echo "Error getting file size.";
}
// close connection
ftp_close($ftp_conn);
?>
定義と使用法
ftp_size()関数は、FTPサーバー上の指定したファイルのサイズを返します。
Note:すべてのFTPサーバーでは、この機能をサポートするわけではありません!
構文
ftp_size( ftp_connection,file );
パラメーター | 説明 |
---|---|
ftp_connection | 必須。 FTP接続を使用するように指定します |
file | 必須。 チェックするために、サーバーのファイルを指定します。 |
技術的な詳細
戻り値: | 成功時にバイト単位でファイルサイズを返し、エラーの場合は-1 |
---|---|
PHPバージョン: | 4+ |
<PHP FTPリファレンス