PHP ftp_get_option() 函數
PHP ftp_get_option() 函數

定義和用法
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 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 函數