例
连接到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_connection,command );
参数 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP连接使用 |
command | 需要。 指定要执行的命令 |
技术细节
返回值: | 返回的字符串数组服务器的响应 |
---|---|
PHP版本: | 5+ |
<PHP FTP参考