例
打開本地文件,並將其上傳到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);
// open file for
reading
$file =
"test.txt";
$fp = fopen($file,"r");
// upload file
if (ftp_fput($ftp_conn,
"somefile.txt" , $fp, FTP_ASCII))
{
echo "Successfully
uploaded $file.";
}
else
{
echo "Error uploading
$file.";
}
// close this connection and file handler
ftp_close($ftp_conn);
fclose($fp);
?>
定義和用法
該ftp_fput()從打開的文件上傳功能,並將其保存到FTP服務器上的文件。
句法
ftp_fput( ftp_connection,remote_file,open_file,mode,startpos );
參數 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP連接使用 |
remote_file | 需要。 指定要上載的文件路徑 |
open_file | 需要。 指定打開的本地文件。 讀停止在文件末尾 |
mode | 需要。 指定傳輸模式。 可能的值:FTP_ASCII或FTP_BINARY |
startpos | 可選的。 指定的遠程文件的位置,開始上傳到 |
技術細節
返回值: | 返回TRUE或FALSE的成功失敗 |
---|---|
PHP版本: | 4+ |
PHP更新日誌: | 在PHP 4.3.0中加入的startpos參數 |
<PHP FTP參考