PHP編寫檔案多伺服器同步程式_php技巧

來源:互聯網
上載者:User

本文執行個體為大家分享了PHP檔案多伺服器同步工具,具體內容如下

<?phpheader('Content-type:text/html;charset=utf-8');//檔案名稱:PHP檔案多伺服器同步工具//檔案作用:本檔案所在伺服器為主伺服器,其它檔案所在伺服器可作分流或者備份。本檔案需要jQuery庫。你也可以外鏈別人的//最後修改時間:2016-06-30//BY:strwei if(!empty($_POST['files'])) sync(); function sync(){  $aFiles   = explode("\n", $_POST['files']);//var_dump($aFiles);exit;  foreach($aFiles as $k => $v){    if(strlen($v) <= 5) unset($aFiles[$k]);  }  array_filter($aFiles);  if(empty($aFiles)) {    echo '沒有檔案'; exit;  }  $aFTPServers = array(            'server1' => array('strwei.com','FTP使用者名稱','FTP密碼', '開啟FTP進去時的預設目錄'),//ftp地址、使用者名稱,密碼、FTP開啟此網站時的預設目錄            //'server2' => array('yy.9.je','FTP使用者名稱','FTP密碼','開啟FTP進去時的預設目錄'),  );  $aAbortFile = array('robots.txt');  $aErrors   = array();  $iError   = count($aErrors);  $aSuc    = array();  foreach($aFTPServers as $ftp) {    $conn  = ftp_connect($ftp[0]);    if(empty($conn)){      $iError = $iError + 1;      array_push($aErrors, $iError . "、伺服器 $ftp 無法串連");      continue;    }    $login = ftp_login($conn, $ftp[1], $ftp[2]);    if(empty($login)){      $iError = $iError + 1;      array_push($aErrors, $iError . "、伺服器 $ftp[0] 無法登入");      continue;    }     $ftp_root = '';    if(!empty($ftp[3])) $ftp_root = ftp_chdir($conn, $ftp[3]);    $ftp_root = ftp_pwd($conn);    if(substr($ftp_root, -1) == '/') $ftp_root = substr($ftp_root, 0, -1);    foreach($aFiles as $k => $v){      $s = basename($v);      if(in_array($s, $aAbortFile)) {        $iError = $iError + 1;        array_push($aErrors, $iError . "、檔案 $v 不允許同步");        continue;      }      if(!file_exists('.'.$v)) {        $iError = $iError + 1;        array_push($aErrors, $iError . "、檔案 $v 不存在");        continue;      }      $upload = ftp_put($conn, $ftp_root . $v, '.' . $v, FTP_BINARY);      if(empty($upload)){        $iError = $iError + 1;        array_push($aErrors, $iError . "、檔案 $v 上傳失敗");        continue;      }      array_push($aSuc, $v);    }  }  if(empty($aErrors)) {    echo '上傳成功: ' . implode('、', $aSuc);    exit;  }  echo implode('<br>', $aErrors);  exit;} $cc = '\r\n';echo '<script src="//cdn.bootcss.com/jquery/3.0.0/jquery.js"></script>';echo <<<EOF請輸入你要同步的檔案名稱(包括它的路徑),例如:inoutcome_final.zip、/default.php、/index.php、/inoutcome_final.sqlite等等,每行輸入一個檔案名稱,可斷行符號輸入多個<br><br><textarea style="width:450px; height:85px; border:1px #000 solid;" id="id_file" onkeyup="this.value=this.value.replace(/ /g,'');"></textarea><br><button id="btn_submit" onclick="return submit_sync();">同步以上檔案</button> <br><span id="show_sync" style="color:#f00;"></span> <script>function submit_sync(){  $("#btn_submit").hide();  var sFiles = $("#id_file").val();  var aFiles = sFiles.split(/$cc/);  if(aFiles.length <= 0 || aFiles[0].length <= 5) {    alert("請手工寫入要同步的檔案清單");    $("#btn_submit").show("slow");    return false;  }  $.post("?", {"files":sFiles}, function(v){    $("#show_sync").text(v);    if(v.indexOf("上傳成功") != -1) $("#id_file").val('');    $("#btn_submit").show(5000);  })  return true;}</script> EOF;?>

以上就是本文的全部內容,希望對大家學習php程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.