ftp_get_option:(PHP 4 >= 4.2.0); ftp_get_option -- 返回當前 FTP 連線的各種不同的選項設定
基本介紹
- 外文名:ftp_get_option
- 學科:計算機
- 性質:程式語言
- 用於:編程
ftp_get_option,說明,
ftp_get_option
說明
mixed ftp_get_option ( resource ftp_stream, int option)
如果成功則返回選項的值,否則,如果給定的參數 option 選項如果不被支持則返回 FALSE 同時會提示一條錯誤信息。
此函式會返回連線句柄為 ftp_stream,指定鍵值 option 的值,截止到目前,以下選項被支持: 表格1. 支持 FTP 逾時選項
FTP_TIMEOUT_SEC | 返回當前設定的網路操作的逾時時間。 |
例子 1. ftp_get_option()實例 <?php // Get the timeout of the given FTP stream $timeout = ftp_get_option($conn_id, FTP_TIMEOUT_SEC); ?> |