PHP.nl

ftp_systype

ftp_systype

Returns the system type identifier of the remote FTP server

 **ftp_systype** FTP\Connection $ftp

Returns the system type identifier of the remote FTP server.

ftp

Returns the remote system type, or false on error.

Voorbeeld: example

<?php

// ftp connection
$ftp = ftp_connect('ftp.example.com');
ftp_login($ftp, 'user', 'password');

// get the system type
if ($type = ftp_systype($ftp)) {
    echo "Example.com is powered by $type\n";
} else {
    echo "Couldn't get the systype";
}

?>
Example.com is powered by UNIX