Beispiel
Holen Sie sich das Systemtyp des FTP-Servers:
<?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);
?>
Die Ausgabe könnte wie folgt aussehen:
System type is: UNIX
Definition und Verwendung
Die ftp_systype() Funktion gibt den Systemtyp des FTP - Servers.
Syntax
ftp_systype( ftp_connection );
Parameter | Beschreibung |
---|---|
ftp_connection | Erforderlich. Gibt die FTP-Verbindung zu verwenden, |
Technische Details
Rückgabewert: | Gibt den Systemtyp auf Erfolg oder FALSE bei einem Fehler |
---|---|
PHP Version: | 4+ |
<PHP FTP - Referenz