(PHP 4, PHP 5, PHP 7)
ftp_systype — Uzak FTP sunucusunun sistem türü tanıtıcısını döndürür
$ftp_akımı
) : stringUzak FTP sunucusunun sistem türü tanıtıcısını döndürür.
ftp_akımı
FTP bağlantısının bağlantı tanıtıcısı.
Hata durumunda FALSE
yoksa uzar sistemin türünü döndürür.
Örnek 1 - ftp_systype() örneği
<?php
// ftp bağlantısı
$ftp = ftp_connect('ftp.example.com');
ftp_login($ftp, 'user', 'password');
// sistem türünü öğrenelim
if ($type = ftp_systype($ftp)) {
echo "Example.com $type takviyelidir.\n";
} else {
echo "Sistem türü bulunumadı";
}
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
Example.com UNIX takviyelidir.