PHP ftp_systype() 函数
PHP ftp_systype() 函数
完整的 PHP FTP 参考手册定义和用法
ftp_systype() 函数返回 FTP 服务器的系统类型标识符。
如果成功,该函数返回系统类型。如果失败,则返回 FALSE。
语法
ftp_systype(ftp_connection)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
实例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_systype($conn);
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_systype($conn);
ftp_close($conn);
?>
上面的代码将输出:
UNIX
完整的 PHP FTP 参考手册
相关文章
- PHP 数组排序
- PHP For 循环
- PHP 包含文件 include 和 require 语句
- PHP 异常处理
- PHP array_diff() 函数
- PHP array_diff_assoc() 函数
- PHP array_filter() 函数
- PHP array_intersect_ukey() 函数
- PHP array_key_last() 函数
- PHP array_multisort() 函数
- PHP array_reduce() 函数
- PHP array_sum() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_unique() 函数
- PHP array_values() 函数
- PHP array_walk() 函数
- PHP arsort() 函数
- PHP 5 Array 函数
- PHP 5 Date/Time 函数
- PHP 杂项 函数