PHP ftp_get_option() 函數(shù)
PHP ftp_get_option() 函數(shù)

定義和用法
The ftp_get_option() 函數(shù)返回 FTP 連接的各種運行時選項。
語法
ftp_get_option(ftp_connection,option)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
option | 必需。規(guī)定要返回的運行時選項。可能的值:
|
實例
<?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 循環(huán)
- PHP 面向對象
- PHP 多維數(shù)組
- PHP array() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)