Örnek
FTP sunucusunda bir dosyanın boyutunu alın:
<?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);
?>
Tanımı ve Kullanımı
ftp_size() işlevi FTP sunucusu belirtilen bir dosyanın boyutunu döndürür.
Note: Tüm FTP sunucuları bu fonksiyonu destekleyen!
Sözdizimi
ftp_size( ftp_connection,file );
Parametre | Açıklama |
---|---|
ftp_connection | Gereklidir. kullanmak için FTP bağlantısı belirtir |
file | Gereklidir. kontrol etmek sunucu dosyayı belirtir |
Teknik detaylar
Geri dönüş değeri: | başarısına bayt cinsinden dosya boyutunu döndürür veya -1 hata |
---|---|
PHP Sürümü: | 4+ |
<PHP FTP Referans