目录

PHP ftp_systype() 函数

❮ PHP FTP 参考

示例

获取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+

❮ PHP FTP 参考