连接、登录和关闭 FTP 连接:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
// then do something...
// close connection
ftp_close($ftp_conn);
?>
ftp_connect() 函数打开到指定主机的 FTP 连接。
当连接打开时,您可以对服务器运行 FTP 功能。
ftp_connect(
host, port, timeout);
Parameter | Description |
---|---|
host | Required. Specifies the FTP server to connect to. Can be a domain address or an IP address. This parameter should not be prefixed with "ftp://" or have any trailing slashes |
port | Optional. Specifies the port of the FTP server. Default is port 21 |
timeout | Optional. Specifies the timeout for all subsequent network operations. Default is 90 seconds |
返回值: | 成功时为 FTP 流,错误时为 FALSE |
---|---|
PHP 版本: | 4+ |
PHP 变更日志: | 这个暂停PHP 4.2.0 中添加了参数 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!