newFtp

来源:互联网 发布:淘宝女装店开店经验 编辑:程序博客网 时间:2024/06/07 02:33
<?php


//$file = 'somefile.txt';
$file='C:\gankenrin\201712\test1.csv';
$remote_file = 'force'.'123'.'.csv';




$ftp_server='crownjewel.jp';
$ftp_user_name='crownjewel';
$ftp_user_pass='5aFsMhGc';
//$conn = ftp_connect("crownjewel.jp") or die("Could not connect");
//ftp_login($conn,"crownjewel","5aFsMhGc");




// 接続を確立する
$conn_id = ftp_connect($ftp_server);


// ユーザー名とパスワードでログインする
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);


// ファイルをアップロードする
if (ftp_put($conn_id, $remote_file, $file, FTP_ASCII)) {
 echo "successfully uploaded $file\n";
} else {
 echo "There was a problem while uploading $file\n";
}


// 接続を閉じる
ftp_close($conn_id);
?>