(PHP 4, PHP 5, PHP 7, PHP 8)
ftp_fput — 上傳一個已經(jīng)打開的文件到 FTP 服務器
$ftp_stream
,$remote_file
,$handle
,$mode
,$startpos
= 0ftp_fput() 函數(shù)用來上傳一個在已經(jīng)打開的文件中的數(shù)據(jù)到 FTP 服務器。
ftp_stream
FTP 連接的鏈接標識符。
remote_file
遠程文件路徑。
handle
打開的本地文件句柄,讀取到文件末尾。
mode
傳輸模式只能為 (文本模式) FTP_ASCII
或
(二進制模式) FTP_BINARY
其中的一個。
startpos
遠程文件上傳的開始位置。
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 ftp_fput() 例子
<?php
// open some file for reading
$file = 'somefile.txt';
$fp = fopen($file, 'r');
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// try to upload $file
if (ftp_fput($conn_id, $file, $fp, FTP_ASCII)) {
echo "Successfully uploaded $file\n";
} else {
echo "There was a problem while uploading $file\n";
}
// close the connection and the file handler
ftp_close($conn_id);
fclose($fp);
?>
版本 | 說明 |
---|---|
4.3.0 |
添加了 startpos 的支持。
|