-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.class.php
488 lines (424 loc) · 9.88 KB
/
http.class.php
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
<?php
class http
{
var $_curlInit;
var $_serverUrl;
var $_param = array();
var $_config = array(
'url',
'method',
'timeout',
'header'
);
var $_cookies = array();
//默认设置
var $_option = array(CURLOPT_RETURNTRANSFER => true,
CURLOPT_HEADER => false,
CURLOPT_TIMEOUT => 120);
//保存返回服务器的内容
var $_server_content;
//设置http的处理方法
var $_method = null;
var $_codeInfo;
var $_request_params;
var $_error;
var $base_string;
var $key_string;
function __construct()
{
$this->_curlInit = curl_init();
return $this;
}
/**
* 设置访问的url
*
* @param string $url
* @return object
*/
function setUrl($url)
{
$this->_serverUrl = $url;
$this->_option[CURLOPT_URL] = $this->_serverUrl;
return $this;
}
/**
* 设置请求的方式 'get'|'post'|'put'|'file'
*
* @param string $method
* @return object
*/
function setMethod($method = 'GET')
{
$method = empty($method) ? 'get' : $method;
$method = strtolower($method);
$this->_method = $method;
switch ($method) {
case 'post':
case 'file':
$this->_option[CURLOPT_POST] = true;
$this->_option[CURLOPT_CUSTOMREQUEST] = 'POST';
break;
case 'get':
$this->_option[CURLOPT_POST] = false;
$this->_option[CURLOPT_CUSTOMREQUEST] = 'GET';
break;
case 'put':
$this->_option[CURLOPT_POST] = false;
$this->_option[CURLOPT_CUSTOMREQUEST] = 'PUT';
break;
case 'delete':
$this->_option[CURLOPT_POST] = false;
$this->_option[CURLOPT_CUSTOMREQUEST] = 'DELETE';
break;
default:
$this->_option[CURLOPT_POST] = false;
$this->_option[CURLOPT_CUSTOMREQUEST] = 'GET';
}
return $this;
}
function _set($key, $value)
{
$this->$key = $value;
}
function _get($key)
{
if (empty($key)) {
return false;
}
return $this->$key;
}
/**
* 使用rawurlencode编码的参数
*
* @param unknown_type $array
* @return unknown
*/
function http_build_query_rawurl($array)
{
if (!empty($array)) {
if (is_array($array)) {
$params = array();
foreach ($array as $key => $value) {
$params[] = $key .'='.rawurlencode($value);
}
$params_string = implode('&', $params);
} else {
$params_string = $array;
}
return $params_string;
}
return false;
}
/**
* 设置请求方式是get的参数
*
* @param array|string $data
* @param bool $raw 是否用rawurlencode编码
* @return object
*/
function _setParameterGet($data, $raw = false)
{
if (!empty($data)) {
if (is_array($data)) {
if ($raw == true) {
$params = $this->http_build_query_rawurl($data);
} else {
$params = http_build_query($data);
}
} else {
$params = $data;
}
if (strpos($this->_serverUrl, '?')) {
$this->_serverUrl = $this->_serverUrl.'&'.$params;
} else {
$this->_serverUrl = $this->_serverUrl.'?'.$params;
}
$this->_option[CURLOPT_URL] = $this->_serverUrl;
$this->_request_params = $params;
}
return $this;
}
/**
* 设置请求方式是post的参数
*
* @param array|string $data
* @param bool $isFile 是否上传文件
* @return object
*/
function _setParameterPost($data, $isFile = false)
{
if (!empty($data)) {
if ($isFile){
if (!is_array($data)) {
$params['fileName'] = '@'.$data;
} else {
foreach ($data as $key => $value) {
if ($key == 'fileName') {
$params[$key] = '@'.$value;
}
}
}
} else {
if (is_array($data)) {
$temp = array();
foreach ($data as $key => $value) {
if (substr($key, -2) == '[]' && is_array($value)) {
foreach ($value as $part) {
$temp[] = $key . '=' . urlencode($part);
}
} else {
$temp[] = $key .'='. urlencode($value);
}
}
$params = implode('&', $temp);
} else {
$params = $data;
}
}
$this->_option[CURLOPT_POSTFIELDS] = $params;
$this->_request_params = $params;
}
return $this;
}
/**
* 设置get|post的数据
*
* @param array|string $data
* @return object
*/
function setData($data)
{
$this->_param = $data;
return $this;
}
/**
* 设置发送头内容格式
*
* @param string $data
* @param string $content_type
*/
function setRawData($data = null, $content_type = null)
{
$this->_param = $data;
switch ($content_type) {
case 'xml':
$this->_option[CURLOPT_HTTPHEADER] = array("Content-Type: text/xml");
break;
case 'bin':
$this->_option[CURLOPT_HTTPHEADER] = array("Content-Type: application/octet-stream");
break;
case 'js':
$this->_option[CURLOPT_HTTPHEADER] = array("Content-Type: application/x-javascript");
break;
case 'jpg':
case 'jpeg':
$this->_option[CURLOPT_HTTPHEADER] = array("Content-Type: image/jpeg");
break;
case 'gif':
$this->_option[CURLOPT_HTTPHEADER] = array("Content-Type: image/gif");
break;
default:
$this->_option[CURLOPT_HTTPHEADER] = array($content_type);
}
return $this;
}
function setHeader($k, $v){
$h = isset($this->_option[CURLOPT_HTTPHEADER]) ? $this->_option[CURLOPT_HTTPHEADER] : array();
if (is_array($h)){
$h[] = $k.": ".$v;
}else{
$h = array($k.": ".$v);
}
$this->_option[CURLOPT_HTTPHEADER] = $h;
}
function setCookie($key, $value)
{
$this->_cookies[] = array($key, $value);
}
/**
* 设置curl的配置参数值
*
* @param array $config
*/
function setConfig($config)
{
//自定义设置,覆盖默认设置
if (is_array($config)) {
foreach ($config as $key => $opt) {
switch ($key) {
case 'url':
$this->_option[CURLOPT_URL] = $opt;
break;
case 'method':
$this->setMethod($opt);
break;
case 'timeout':
$this->_option[CURLOPT_TIMEOUT] = $opt;
break;
case 'header':
$this->_option[CURLOPT_HEADER] = $opt;
break;
case 'http_header':
$this->_option[CURLOPT_HTTPHEADER] = $opt;
break;
case 'referer':
$this->_option[CURLOPT_REFERER] = $opt;
break;
}
}
}
return $this;
}
/**
* 设置curl选项,代替curl_setopt_array
*
* @param curl handle $ch
* @param array $data
*/
function _setCurlOption($ch, $options)
{
foreach ($options as $key => $value) {
curl_setopt($ch, $key, $value);
}
}
/**
* 发送请求,获取的内容
*
* @param string $method
* @return array
*/
function request($method = null, $https = false)
{
list($usec, $sec) = explode(" ", microtime());
$start_ex_time = (float)$usec + (float)$sec;
//支持https
if ($https) {
$this->_option[CURLOPT_SSL_VERIFYPEER] = false;
}
$method = empty($method) ? "get" : $method;
if (strtolower($method) == 'post' || strtolower($method) == 'put') {
$this->setMethod($method);
$this->_setParameterPost($this->_param);
} elseif (strtolower($method) == 'file') {
$this->setMethod('file');
$this->_setParameterPost($this->_param, true);
} elseif (strtolower($method) == 'reg') {
$this->setMethod();
$this->_setParameterGet($this->_param, true);
} elseif (strtolower($method) == 'delete') {
$this->setMethod('delete');
$this->_setParameterGet($this->_param);
} else {
$this->setMethod();
$this->_setParameterGet($this->_param);
}
if ($this->_cookies) {
$cookies = array();
foreach ($this->_cookies as $var) {
$cookies[] = $var[0].'='.rawurlencode($var[1]);
}
$this->_option[CURLOPT_COOKIE] = implode('; ', $cookies);
}
if (!function_exists('curl_setopt_array')) {
$this->_setCurlOption($this->_curlInit, $this->_option);
} else {
curl_setopt_array($this->_curlInit, $this->_option);
}
//返回结果
$this->_server_content = curl_exec($this->_curlInit);
//获取curl请求的信息
$this->_codeInfo = curl_getinfo($this->_curlInit);
$this->_error = curl_error($this->_curlInit);
//再重试访问一次
if ($this->getState() == 0) {
if (!function_exists('curl_setopt_array')) {
$this->_setCurlOption($this->_curlInit, $this->_option);
} else {
curl_setopt_array($this->_curlInit, $this->_option);
}
//返回结果
$this->_server_content = curl_exec($this->_curlInit);
//获取curl请求的信息
$this->_codeInfo = curl_getinfo($this->_curlInit);
}
//将设置的方法置空
if ($this->_method) {
$this->_method = null;
}
//清除数据
if ($this->_param) {
unset($this->_param);
$this->_param = array();
}
//清零cookie
$this->_cookies = array();
//重置curl的配置选项
unset($this->_option);
$this->_option = array();
$this->_option = array(CURLOPT_RETURNTRANSFER => true,
CURLOPT_HEADER => false,
CURLOPT_TIMEOUT => 10);
return $this->_server_content;
}
/**
* 获取返回的http状态
*
* @return int
*/
function getState()
{
return $this->_codeInfo['http_code'];
}
/**
* 获取调用的url
*
* @return string
*/
function getUrl()
{
return $this->_codeInfo['url'];
}
/**
* 获取请求的参数
*
* @return string
*/
function getRequestParams()
{
return $this->_request_params;
}
/**
* 获取发送curl请求的返回有关curl的信息
*
* @return array
*/
function getHttpInfo()
{
return $this->_codeInfo;
}
/**
* 获取错误代码
*/
function getError() {
return $this->_error;
}
/**
* 关闭curl
*
*/
function closeHttp()
{
curl_close($this->_curlInit);
}
/**
* 析函数,关闭curl
*
*/
function __destruct()
{
if ($this->_curlInit) {
$this->closeHttp();
}
}
}
?>