ftp_systype
ftp_systype
(PHP 4, PHP 5, PHP 7)
ftp_systype - 返回远程FTP服务器的系统类型标识符
描述
string ftp_systype ( resource $ftp_stream )
返回远程FTP服务器的系统类型标识符。
参数
ftp_stream
FTP连接的链接标识符。
返回值
返回远程系统类型,或者出错时返回FALSE
。
例子
示例#1 ftp_systype()示例
<?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
← ftp_ssl_connect