PHP ftp_get_option() 函数
PHP ftp_get_option() 函数
完整的 PHP FTP 参考手册定义和用法
The ftp_get_option() 函数返回 FTP 连接的各种运行时选项。
语法
ftp_get_option(ftp_connection,option)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
option | 必需。规定要返回的运行时选项。可能的值:
|
实例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_get_option($conn,FTP_TIMEOUT_SEC);
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
echo ftp_get_option($conn,FTP_TIMEOUT_SEC);
ftp_close($conn);
?>
上面的代码将输出:
90
完整的 PHP FTP 参考手册
相关文章
- PHP While 循环
- PHP 面向对象
- PHP 多维数组
- PHP array() 函数
- PHP array_map() 函数
- PHP array_replace_recursive() 函数
- PHP array_reverse() 函数
- PHP array_uintersect_uassoc() 函数
- PHP arsort() 函数
- PHP natcasesort() 函数
- PHP natsort() 函数
- PHP next() 函数
- PHP pos() 函数
- PHP rsort() 函数
- PHP uasort() 函数
- PHP usort() 函数
- PHP 5 Array 函数
- PHP 5 Date/Time 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数