PHP進行批量任務處理不逾時的解決方案_php技巧

來源:互聯網
上載者:User

本文執行個體分析了PHP進行批量任務處理不逾時的解決方案。分享給大家供大家參考,具體如下:

PHP批量任務處理

PHP在批量處理任務的時候會逾時,其實解決方案很簡單了,就是把任務分割,一次處理一部分,任務進度可以放在服務端也可以放在用戶端,不是很複雜的話放在用戶端,用js來處理就可以了.

用戶端js回調處理

用戶端處理的時候需要住一個地方,就是使用ajax處理的時候,ajax是非同步,使用for迴圈來處理的時候只是批量請求,這樣任務量大的時候會直接DDOS伺服器,所以需要等待回呼函數返回,然後進行下一次的請求.

用戶端例子

檔案: index.html

<!DOCTYPE html><html><head> <title></title> <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script> <script type="text/javascript"> $(function(){  $("#Jidsall").click(function(){   $(".Jids").prop("checked", this.checked);  });  $("#btn_request").click(function(){   // 任務對象   var task = {};   // 工作清單   task.list = $(".Jids:checked").toArray();   // 當前任務   task.i = 0;   // 下一個請求   task.next = function() {    if (this.i >= this.list.length) {     // 任務完成     this.done();     return;    }    var i = this.i;    // 請求失敗    var error = function(data){     // 失敗的邏輯     console.log("error", data.id);     // 繼續調用     this.next();    };    // 請求成功    var success = function(data){     // 成功的邏輯     console.log("success", data.id);     // 繼續調用     this.next();    };    $.ajax({     context: this,     method: "post",     url: "do.php",     data: {id:this.list[i].value},     error: error,     success: success,     dataType: "json"    });    this.i++;   };   // 完成請求   task.done = function() {    console.log("done");   };   // 請求   task.next();  }); }); </script></head><body><table> <tr><td><input type="checkbox" id="Jidsall">all</td></tr> <tr><td><input type="checkbox" value="1" class="Jids">1</td></tr> <tr><td><input type="checkbox" value="2" class="Jids">2</td></tr> <tr><td><input type="checkbox" value="3" class="Jids">3</td></tr> <tr><td><input type="checkbox" value="4" class="Jids">4</td></tr> <tr><td><input type="checkbox" value="5" class="Jids">5</td></tr> <tr><td><input type="checkbox" value="6" class="Jids">6</td></tr> <tr><td><input type="checkbox" value="7" class="Jids">7</td></tr> <tr><td><input type="checkbox" value="8" class="Jids">8</td></tr> <tr><td><input type="checkbox" value="9" class="Jids">9</td></tr> <tr><td><input type="button" id="btn_request" value="請求"></td></tr></table></body></html>

PHP處理批量任務的例子 服務端例子

檔案: do.php

<?phpsleep(3);if ($_POST["id"] == 5) { http_response_code(500); exit();}echo json_encode($_POST);

更多關於PHP相關內容感興趣的讀者可查看本站專題:《php字串(string)用法總結》、《PHP數組(Array)操作技巧大全》、《PHP運算與運算子用法總結》、《PHP網路編程技巧總結》、《PHP基本文法入門教程》、《php操作office文檔技巧總結(包括word,excel,access,ppt)》、《php日期與時間用法總結》、《php物件導向程式設計入門教程》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧匯總》

希望本文所述對大家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.