Home >php教程 >php手册 >工作笔记用PHP写FTP文件上传

工作笔记用PHP写FTP文件上传

WBOY
WBOYOriginal
2016-06-13 10:26:47969browse


$ftp_server = "*.*.*.*";$ftp_user = "lu";$ftp_pass = "love you";
// set up a connection or die$conn_id = ftp_connect($ftp_server) or die("Couldnt connect to $ftp_server");
$login_result = ftp_login($conn_id, $ftp_user, $ftp_pass);
if ((!$conn_id) || (!$login_result)) { echo "FTP connection has failed!"; echo "Attempted to connect to $ftp_server for user $ftp_user_name"; exit; } else { echo "Connected to $ftp_server, for user $ftp_user_name"; }
// try to login $filename=date(Ymd).".xml"; $source_file="/usr/local/IVR/sendwireless/xml/data/".$filename; //源地址 echo $source_file; $destination_file="/ITC/admin/logstat/ftplog/".$filename; //目标地址 $upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY) or die("Couldnt connect to $ftp_server"); ftp_quit($conn_id);


if (!$upload) { echo "FTP upload has failed!"; } else { echo "Uploaded $source_file to $ftp_server as $destination_file"; }ftp_close($conn_id);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn