En son web geliştirme öğreticiler
 

PHP ftp_systype() Function

<PHP FTP Referans

Örnek

FTP sunucusu sistem türünü 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);

// get system type
if ($type = ftp_systype($ftp_conn))
  {
  echo "System type is: $type";
  }
else
  {
  echo "Could not get system type.";
  }

// close connection
ftp_close($ftp_conn);
?>

Çıktı şöyle görünebilir:

System type is: UNIX

Tanımı ve Kullanımı

ftp_systype() işlevi FTP sunucusunun sistem türü bir tanımlayıcı döndürür.

Sözdizimi

ftp_systype( ftp_connection );

Parametre Açıklama
ftp_connection Gereklidir. kullanmak için FTP bağlantısı belirtir

Teknik detaylar

Geri dönüş değeri: başarısına sistem türünü döndürür, aksi takdirde FALSE
PHP Sürümü: 4+

<PHP FTP Referans