PHP ftp_raw() 函数
实例
连接FTP服务器并执行命令:
<?php
// connect to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
// the two lines below is the same as: ftp_login($ftp_conn,"john","secretpassword");
ftp_raw($ftp_conn, "USER john");
ftp_raw($ftp_conn, "PASS secretpassword");
?>
// connect to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
// the two lines below is the same as: ftp_login($ftp_conn,"john","secretpassword");
ftp_raw($ftp_conn, "USER john");
ftp_raw($ftp_conn, "PASS secretpassword");
?>
定义和用法
ftp_raw() 函数向 FTP 服务器发送一个 raw 命令。
语法
ftp_raw(ftp_conn, command);
参数值
参数 | 描述 |
---|---|
ftp_conn | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
command | 必需。规定要执行的命令。 |
提示和注释
注释:该函数以字符串数组的形式返回服务器的响应。不执行解析,且 ftp_raw() 不检查命令是否正确。
技术细节
返回值: | 来自服务器的响应为字符串数组 |
---|---|
PHP 版本: | 5+ |