PHP跨網域跨主機跨server上傳檔案執行個體教程

來源:互聯網
上載者:User

如何跨網域跨主機跨server上傳檔案?一般最基本的上傳方式是:

1.使用者把檔案上傳到 web server

2. web server 把上傳的檔案 利用 move_uploaded_file() 函式,將檔案移到指定的檔案夾內

但是,有時候我們需要把上傳的檔案放到另一台專門放檔案的 file server,這時候,就無法利用 move_uploaded_file() 去搬移檔案了,而需要利用 ftp 去傳送檔案至 file server,方法很簡單...

直接看程式碼:

 

 代碼如下 複製代碼

$file = $_FILES['file'];

$file_tmp = $file['tmp_name'];

$file_name = $file['name'];

if(is_uploaded_file($file_tmp)){ //確定user有"上傳"檔案

$file_ext = strrchr($file_name,'.'); //上傳檔案的副檔案名稱

$file_name_new = date('YmdHis').$file_ext;

$host = '127.0.0.1';

$port = '21';

$user = 'admin';

$pass = '123456';

$link = ftp_connect($host,$port);

$login = ftp_login($link,$user,$pass);

ftp_chdir($link,'filedir'); //切換到要放檔案的檔案夾

if(ftp_put($link,$file_name_new,$file_tmp,FTP_BINARY)){

$msg = '上傳成功';

}else{

$msg = '上傳失敗';

}

}else{

$msg = '上傳失敗';

}

ftp_close($link);

echo $msg;

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.