您好,登錄后才能下訂單哦!
這篇文章主要介紹“PHP進(jìn)行批量任務(wù)處理不超時(shí)的解決方案”,在日常操作中,相信很多人在PHP進(jìn)行批量任務(wù)處理不超時(shí)的解決方案問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”PHP進(jìn)行批量任務(wù)處理不超時(shí)的解決方案”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
PHP批量任務(wù)處理
PHP在批量處理任務(wù)的時(shí)候會(huì)超時(shí),其實(shí)解決方法很簡(jiǎn)單了,就是把任務(wù)分割,一次處理一部分,任務(wù)進(jìn)度可以放在服務(wù)端也可以放在客戶端,不是很復(fù)雜的話放在客戶端,用js來處理就可以了.
客戶端js回調(diào)處理
客戶端處理的時(shí)候需要住一個(gè)地方,就是使用ajax處理的時(shí)候,ajax是異步的,使用for循環(huán)來處理的時(shí)候只是批量請(qǐng)求,這樣任務(wù)量大的時(shí)候會(huì)直接DDOS服務(wù)器,所以需要等待回調(diào)函數(shù)返回,然后進(jìn)行下一次的請(qǐng)求.
客戶端例子
文件: 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(){ // 任務(wù)對(duì)象 var task = {}; // 任務(wù)列表 task.list = $(".Jids:checked").toArray(); // 當(dāng)前任務(wù) task.i = 0; // 下一個(gè)請(qǐng)求 task.next = function() { if (this.i >= this.list.length) { // 任務(wù)完成 this.done(); return; } var i = this.i; // 請(qǐng)求失敗 var error = function(data){ // 失敗的邏輯 console.log("error", data.id); // 繼續(xù)調(diào)用 this.next(); }; // 請(qǐng)求成功 var success = function(data){ // 成功的邏輯 console.log("success", data.id); // 繼續(xù)調(diào)用 this.next(); }; $.ajax({ context: this, method: "post", url: "do.php", data: {id:this.list[i].value}, error: error, success: success, dataType: "json" }); this.i++; }; // 完成請(qǐng)求 task.done = function() { console.log("done"); }; // 請(qǐng)求 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="請(qǐng)求"></td></tr> </table> </body> </html>
PHP處理批量任務(wù)的例子 服務(wù)端例子
文件: do.php
<?php sleep(3); if ($_POST["id"] == 5) { http_response_code(500); exit(); } echo json_encode($_POST);
到此,關(guān)于“PHP進(jìn)行批量任務(wù)處理不超時(shí)的解決方案”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。