例
連接到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參考