获取FTP服务器的系统类型:
<?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);
?>
输出可能如下所示:
System type is: UNIX
ftp_systype() 函数返回 FTP 服务器的系统类型标识符。
ftp_systype(
ftp_conn);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
返回值: | 成功时系统类型,失败时系统类型为 FALSE |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!