程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 網頁ftp 代碼二 文件上傳

php 網頁ftp 代碼二 文件上傳

編輯:關於PHP編程

php 網頁ftp 代碼二 文件上傳

<?php
    $ftpserver=$_POST[ftpserver];
    $ftpport=$_POST[ftpport];
    $ftpuser=$_POST[ftpuser];
    $ftppassword=$_POST[ftppassword];
    $ftp=@ftp_connect($ftpserver,$ftpport);
    if(!$ftp){ echo "連接FTP服務器".$ftpserver."的端口".$ftpport."失敗";exit;}
    $rs=@ftp_login($ftp,$ftpuser,$ftppassword);
    if(!$rs){ echo "用戶名或密碼錯誤,連接FTP服務器失敗";exit;}
    $curDir=stripslashes($_POST[curDir]);
    $localfile=str_replace("\","/",stripslashes($_POST[file1]));
    
    if($localfile)
    {
     $filename=substr(strrchr($localfile,"/"),1);
     if($curDir=="/")
     {
      $remotefile=$curDir.$filename;
     }else{
      $remotefile=$curDir."/".$filename;
     }
     $rs=ftp_put($ftp,$remotefile,$localfile,FTP_ASCII);
     if($rs)
     {
      echo "<script>alert('上傳文件成功');history.back();</script>";
      exit;
     }else{
      echo "<script>alert('上傳文件失敗');history.back();</script>";
      exit;
     }
    
    }else{
      echo "<script>alert('沒有選擇上傳文件');history.back();</script>";
      exit;
    }
?>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved