PHP ftp_systype() Function
Example
Get the system type of the FTP server:
<?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);
?>
The output could look something like this:
System type is: UNIX
Definition and Usage
The ftp_systype() function returns the system type identifier of the FTP server.
Syntax
ftp_systype(ftp_conn);
Parameter Values
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
Technical Details
Return Value: | The system type on success, FALSE on failure |
---|---|
PHP Version: | 4+ |
❮ PHP FTP Reference
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.