ftp_get_option
ftp_get_option
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
ftp_get_option - 检索当前FTP流的各种运行时行为
描述
mixed ftp_get_option ( resource $ftp_stream , int $option )
该函数返回option
指定FTP连接请求的值。
参数
ftp_stream
FTP连接的链接标识符。
option
目前,支持以下选项:
FTP_TIMEOUT_SEC | 返回用于网络相关操作的当前超时。 |
---|---|
FTP_AUTOSEEK | 如果此选项开启则返回TRUE,否则返回FALSE。 |
返回值
返回成功时的值或者FALSE
给定option
不受支持的值。在后一种情况下,还会引发警告消息。
例子
示例#1 ftp_get_option()示例
<?php
// Get the timeout of the given FTP stream
$timeout = ftp_get_option($conn_id, FTP_TIMEOUT_SEC
?>