目录

PHP ftp_connect() 函数

❮ PHP FTP 参考

示例

连接、登录和关闭 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 中添加了参数

❮ PHP FTP 参考