PHP ftp_ssl_connect() 函數(shù)
PHP ftp_ssl_connect() 函數(shù)

定義和用法
ftp_ssl_connect() 函數(shù)打開一個安全的 SSL-FTP 連接。
當(dāng)連接打開,您就可以在服務(wù)器運行 FTP 函數(shù)。
語法
ftp_ssl_connect(host,port,timeout)
參數(shù) | 描述 |
---|---|
host | 必需。規(guī)定要連接的 FTP 服務(wù)器??梢允怯蛎刂坊?IP 地址。該參數(shù)不能包含 "ftp://" 或者斜線。 |
port | 可選。規(guī)定 FTP 服務(wù)器的端口。默認是 21。 |
timeout | 可選。規(guī)定該 FTP 連接的超時時間。默認是 90 秒。 |
實例
本實例嘗試連接一個 FTP 服務(wù)器。如果連接失敗,則 die() 函數(shù)將終止腳本,并輸出一條消息:
<?php
$conn = ftp_ssl_connect("ftp.testftp.com") or die("Could not connect");
?>
$conn = ftp_ssl_connect("ftp.testftp.com") or die("Could not connect");
?>

相關(guān)文章
- PHP 簡介
- PHP $_GET 變量
- PHP 多維數(shù)組
- PHP 文件處理
- PHP 文件上傳
- PHP Cookie
- PHP 發(fā)送電子郵件
- PHP array_chunk() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP asort() 函數(shù)
- PHP count() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)