目录

PHP ftp_raw() 函数

❮ PHP FTP 参考

示例

连接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");

?>

定义和用法

ftp_raw() 函数向 FTP 服务器发送原始命令。

语法

ftp_raw( ftp_conn, command);

参数值

Parameter Description
ftp_conn Required. Specifies the FTP connection to use
command Required. Specifies the command to execute


技术细节

返回值: 来自服务器的响应作为字符串数组
PHP 版本: 5+

❮ PHP FTP 参考