本文实例分析了PHP进行批量任务处理不超时的解决方法。分享给大家供大家参考,具体如下:
PHP批量任务处理
PHP在批量处理任务的时候会超时,其实解决方法很简单了,就是把任务分割,一次处理一部分,任务进度可以放在服务端也可以放在客户端,不是很复杂的话放在客户端,用js来处理就可以了.
客户端js回调处理
客户端处理的时候需要住一个地方,就是使用ajax处理的时候,ajax是异步的,使用for循环来处理的时候只是批量请求,这样任务量大的时候会直接DDOS服务器,所以需要等待回调函数返回,然后进行下一次的请求.
客户端例子
文件: index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
<!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
1
2
3
4
5
6
7
|
<?php sleep(3); if ( $_POST [ "id" ] == 5) { http_response_code(500); exit (); } echo json_encode( $_POST ); |
希望本文所述对大家PHP程序设计有所帮助。