-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_helper.php
1436 lines (1315 loc) · 35.2 KB
/
common_helper.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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
if (!function_exists('getIntranetIP')) {
/**
* 获取本地机子内网ip
* @return array
*/
function getIntranetIP()
{
return gethostbynamel(exec("hostname"));
}
}
if (!function_exists('is_json')) {
/**
* 判断数据是合法的json数据: (PHP版本大于5.3)
*
* @param $string
* @return bool
*
*/
function is_json($string)
{
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
}
if (!function_exists('is_not_json')) {
/**
* 判断数据不是JSON格式
*
* @param $str
* @return bool
*
*/
function is_not_json($str)
{
return !is_json($str);
}
}
if (!function_exists('create_qr_code')) {
/**
* 利用google api生成二维码图片
*
* @param string $content 二维码内容参数
* @param string $size 生成二维码的尺寸,宽度和高度的值
* @param string $lev 可选参数,纠错等级
* @param string $margin 生成的二维码离边框的距离
* @return string
*
*/
function create_qr_code($content, $size = '200', $lev = 'L', $margin = '0')
{
$content = urlencode($content);
return '<img src="http://chart.apis.google.com/chart?chs=' . $size . 'x' . $size . '&cht=qr&chld=' . $lev . '|' . $margin . '&chl=' . $content . '" widht="' . $size . '" height="' . $size . '" />';
}
}
if (!function_exists('is_https')) {
/**
* 判断是不是https
*
* @create 2019-01-29 12:04:26
* @return bool
*
*/
function is_https()
{
if (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') {
return true;
} elseif (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
return true;
} elseif (!empty($_SERVER['HTTP_FRONT_END_HTTPS']) && strtolower($_SERVER['HTTP_FRONT_END_HTTPS']) !== 'off') {
return true;
}
return false;
}
}
if (!function_exists('get_curl_data')) {
/**
* 请求远程数据
*
* @param string $url
* @param array $param
* @return mixed
*
*/
function get_curl_data($url, $param = [])
{
// 创建一个cURL资源
$ch = curl_init();
// 设置URL和相应的选项
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//绕过ssl验证
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
if (!empty($param)) {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param));
}
// 抓取URL并把它传递给浏览器
$res = curl_exec($ch);
// 关闭cURL资源,并且释放系统资源
curl_close($ch);
return $res;
}
}
if (!function_exists('imgToBase64')) {
/**
* 获取图片的Base64编码(不支持url)
*
* @date 2017-02-20 19:41:22
* @param string $img_file 传入本地图片地址
* @return string
*
*/
function imgToBase64($img_file)
{
$img_base64 = '';
if (file_exists($img_file)) {
$app_img_file = $img_file; // 图片路径
$img_info = getimagesize($app_img_file); // 取得图片的大小,类型等
//echo '<pre>' . print_r($img_info, true) . '</pre><br>';
$fp = fopen($app_img_file, "r"); // 图片是否可读权限
if ($fp) {
$filesize = filesize($app_img_file);
$content = fread($fp, $filesize);
$file_content = chunk_split(base64_encode($content)); // base64编码
switch ($img_info[2]) {
//判读图片类型
case 1:
$img_type = "gif";
break;
case 2:
$img_type = "jpg";
break;
case 3:
$img_type = "png";
break;
case 17:
$img_type = "x-icon";
break;
default :
return null;
}
$img_base64 = 'data:image/' . $img_type . ';base64,' . $file_content;//合成图片的base64编码
}
fclose($fp);
}
return $img_base64; //返回图片的base64
}
}
if (!function_exists('isMobile')) {
/**
*移动端判断
*
* @return bool
*
*/
function isMobile()
{
// 如果有HTTP_X_WAP_PROFILE则一定是移动设备
if (isset($_SERVER['HTTP_X_WAP_PROFILE'])) {
return true;
}
// 如果via信息含有wap则一定是移动设备,部分服务商会屏蔽该信息
if (isset($_SERVER['HTTP_VIA'])) {
// 找不到为flase,否则为true
return stristr($_SERVER['HTTP_VIA'], "wap") ? true : false;
}
// 脑残法,判断手机发送的客户端标志,兼容性有待提高
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$clientkeywords = [
'nokia',
'sony',
'ericsson',
'mot',
'samsung',
'htc',
'sgh',
'lg',
'sharp',
'sie-',
'philips',
'panasonic',
'alcatel',
'lenovo',
'iphone',
'ipod',
'blackberry',
'meizu',
'android',
'netfront',
'symbian',
'ucweb',
'windowsce',
'palm',
'operamini',
'operamobi',
'openwave',
'nexusone',
'cldc',
'midp',
'wap',
'mobile',
];
// 从HTTP_USER_AGENT中查找手机浏览器的关键字
if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) {
return true;
}
}
// 协议法,因为有可能不准确,放到最后判断
if (isset($_SERVER['HTTP_ACCEPT'])) {
// 如果只支持wml并且不支持html那一定是移动设备
// 如果支持wml和html但是wml在html之前则是移动设备
if (
(strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos(
$_SERVER['HTTP_ACCEPT'],
'text/html'
) === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos(
$_SERVER['HTTP_ACCEPT'],
'text/html'
)))
) {
return true;
}
}
return false;
}
}
if (!function_exists('git_second')) {
/**
* 输入字符串的时:分:秒 返回秒数
*
* @param int $time
* @return string
*
*/
function git_second($time)
{
$h = substr($time, -8, 2) * 3600;
$m = substr($time, -5, 2) * 60;
$s = substr($time, -2, 2);
return $h + $m + $s;
}
}
if (!function_exists('diffBetweenTwoDays')) {
/**
* 获取日期天数差。
*
* @param string $day1
* @param string $day2
* @return string
*
*/
function diffBetweenTwoDays($day1, $day2)
{
$second1 = strtotime($day1);
$second2 = strtotime($day2);
if ($second1 < $second2) {
$tmp = $second2;
$second2 = $second1;
$second1 = $tmp;
}
return ($second1 - $second2) / 86400;
}
}
if (!function_exists('get_time')) {
/**
* 获取时间,采用标准时区。
*
* @return string
*
*/
function get_time()
{
date_default_timezone_set('Asia/Shanghai');
return date("Y-m-d H:i:s");
}
}
if (!function_exists('get_date')) {
/**
* 将时间戳 格式化 获取日期
*
* @param int $time
* @return string
*
*/
function get_date($time)
{
date_default_timezone_set('PRC');
return date("Y-m-d", mktime(0, 0, 0, date("m"), date("d") - (int)$time, date("y")));
}
}
if (!function_exists('get_date_str')) {
/**
* 将时间戳 格式化 获取日期
*
* @param int $time
* @param int $time_str
* @return string
*
*/
function get_date_str($time, $time_str)
{
date_default_timezone_set('PRC');
return date("Y-m-d", strtotime('-' . $time . ' days', strtotime($time_str)));
}
}
if (!function_exists('get_distance')) {
/**
* 计算两点地理坐标之间的距离
*
* @param float $longitude1 起点经度
* @param float $latitude1 起点纬度
* @param float $longitude2 终点经度
* @param float $latitude2 终点纬度
* @param Int $unit 单位 1:米 2:公里
* @param Int $decimal 精度 保留小数位数
* @return float
*/
function get_distance($longitude1, $latitude1, $longitude2, $latitude2, $unit = 2, $decimal = 10)
{
$EARTH_RADIUS = 6370.996; // 地球半径系数
$radLat1 = $latitude1 * M_PI / 180.0;
$radLat2 = $latitude2 * M_PI / 180.0;
$radLng1 = $longitude1 * M_PI / 180.0;
$radLng2 = $longitude2 * M_PI / 180.0;
$a = $radLat1 - $radLat2;
$b = $radLng1 - $radLng2;
$distance = 2 * asin(sqrt(pow(sin($a / 2), 2) + cos($radLat1) * cos($radLat2) * pow(sin($b / 2), 2)));
$distance = $distance * $EARTH_RADIUS;
if ($unit == 1) {
$distance = $distance * 1000;
}
return round($distance, $decimal);
}
}
if (!function_exists('is_date')) {
/**
* 判断是否为日期格式
*
* @param string $time 时间字符串
* @return boolean
*/
function is_date($time)
{
return strtotime($time);
}
}
if (!function_exists('getMillisecond')) {
/**
* 获取毫秒级别的时间戳
*
*
*/
function getMillisecond()
{
//获取毫秒的时间戳
$time = explode(" ", microtime());
$time = $time[1] . ($time[0] * 1000);
$time2 = explode(".", $time);
$time = $time2[0];
return $time;
}
}
if (!function_exists('get_date_second')) {
/**
* 把秒换成时分秒
*
* @create 2019-01-24 15:21:21
* @param $seconds
* @return float|int|string
*
*/
function get_date_second($seconds)
{
$h = floor($seconds / 3600);
$m = floor(($seconds - $h * 3600) / 60);
$s = ($seconds - $h * 3600 - $m * 60);
$m = $m >= 10 ? $m : '0' . $m;
$s = $s >= 10 ? $s : '0' . $s;
$s = $h . ':' . $m . ':' . $s;
return $s;
}
}
if (!function_exists('get_date_after')) {
/**
* 将时间戳 格式化 获取日期
*
* @param int $time
* @return string
*
*/
function get_date_after($time)
{
date_default_timezone_set('PRC');
return date("Y-m-d", mktime(0, 0, 0, date("m"), date("d") + (int)$time, date("y")));
}
}
if (!function_exists('check_phone')) {
/**
* 检查数据的参数是不是电话参数。
*
* @param string $str
* @return string
*
*/
function check_phone($str)
{
if (empty($str)) {
return true;
}
return preg_match(
"/^((\(\d{2,3}\))|(\d{3}[\-]?))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}([\-]?\d{1,4})?$/",
$str
);
}
}
if (!function_exists('check_mail')) {
/**
* 检查数据的参数是不是邮箱参数。
*
* @param string $str
* @return string
*
*/
function check_mail($str)
{
if (empty($str)) {
return true;
}
return preg_match("/^[A-Z_a-z0-9-.]+@([A-Z_a-z0-9-]+\.)+[a-z0-9A-Z]{2,4}$/", $str);
}
}
if (!function_exists('check_int')) {
/**
* 检查数据的参数是不是数字参数。
*
* @param string $str
* @return string
*
*/
function check_int($str)
{
if (empty($str)) {
return true;
}
return preg_match("/^\d+$/", $str);
}
}
if (!function_exists('get_cn')) {
/**
* 正则提取中文
*
* @param string $str
* @return string
*
*/
function get_cn($str)
{
preg_match_all('/[\x{4e00}-\x{9fff}]+/u', $str, $matches);
return join('', $matches[0]);
}
}
if (!function_exists('get_int')) {
/**
* 正则提取数字
*
* @param string $str
* @return string
*
*/
function get_int($str)
{
preg_match_all('/[\d]+/u', $str, $matches);
return join('', $matches[0]);
}
}
if (!function_exists('get_from_ip')) {
/**
* 获取ip
*
* @return string
*
*/
function get_from_ip()
{
if (getenv('HTTP_CLIENT_IP')) {
$ip = getenv('HTTP_CLIENT_IP');
} elseif (getenv('HTTP_X_FORWARDED_FOR')) {
$ip = getenv('HTTP_X_FORWARDED_FOR');
} elseif (getenv('HTTP_X_FORWARDED')) {
$ip = getenv('HTTP_X_FORWARDED');
} elseif (getenv('HTTP_FORWARDED_FOR')) {
$ip = getenv('HTTP_FORWARDED_FOR');
} elseif (getenv('HTTP_FORWARDED')) {
$ip = getenv('HTTP_FORWARDED');
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
return $ip;
}
}
if (!function_exists('sign')) {
/**
* 签名
*
* @param $params
* @param $secret_key
* @return string
*
* @author jiangbingjie<[email protected]>
*/
function sign(array $params, $secret_key)
{
unset($params['sign']);
ksort($params);
$params['secret_key'] = $secret_key;
return md5(http_build_query($params));
}
}
if (!function_exists('desensitize')) {
/**
* 对字符串脱敏
* @param $string
* @param int $start
* @param int $length
* @param string $re
* @return string
*/
function desensitize($string, $start = 0, $length = 0, $re = '*')
{
if (empty($string) || empty($length) || empty($re)) return $string;
$end = $start + $length;
$strlen = mb_strlen($string);
$str_arr = array();
for ($i = 0; $i < $strlen; $i++) {
if ($i >= $start && $i < $end)
$str_arr[] = $re;
else
$str_arr[] = mb_substr($string, $i, 1);
}
return implode('', $str_arr);
}
}
if (!function_exists('is_serialized')) {
/**
* 判断是否虚拟化数据
* @param $data
* @return bool
*/
function is_serialized($data)
{
$data = trim($data);
if ('N;' == $data) {
return true;
}
if (!preg_match('/^([adObis]):/', $data, $badions)) {
return false;
}
switch ($badions[1]) {
case 'a' :
case 'O' :
case 's' :
if (preg_match("/^{$badions[1]}:[0-9]+:.*[;}]\$/s", $data)) {
return true;
}
break;
case 'b' :
case 'i' :
case 'd' :
if (preg_match("/^{$badions[1]}:[0-9.E-]+;\$/", $data)) {
return true;
}
break;
}
return false;
}
}
if (!function_exists('get_uuid')) {
/**
* 获取唯一id
*
* @param string $prefix
* @return string
*/
function get_uuid($prefix = '')
{
return uniqid($prefix, true);
}
}
if (!function_exists('guid')) {
/**
* 返回guid
* @return string
*/
function guid()
{
if (function_exists('com_create_guid')) {
return com_create_guid();
} else {
mt_srand((double)microtime() * 10000);//optional for php 4.2.0 and up.
$char_id = strtoupper(md5(uniqid(rand(0, getrandmax()), true)));
$hyphen = chr(45);
return substr($char_id, 0, 8) . $hyphen
. substr($char_id, 8, 4) . $hyphen
. substr($char_id, 12, 4) . $hyphen
. substr($char_id, 16, 4) . $hyphen
. substr($char_id, 20, 12);
}
}
}
if (!function_exists('transformTime')) {
/**
* 时间戳换算成距今时间
*
* @param int $time
* @return string
*
*/
function transformTime($time)
{
if (!is_numeric($time)) {
return '必须是数字';
}
$t = time() - $time;
if ($t <= 0) {
return '1秒前';
}
$f = [
'31536000' => '年',
'2592000' => '月',
'604800' => '星期',
'86400' => '天',
'3600' => '小时',
'60' => '分钟',
'1' => '秒',
];
foreach ($f as $k => $v) {
if (0 != $c = floor($t / (int)$k)) {
return $c . $v . '前';
}
}
return '错误';
}
}
if (!function_exists('timeFormat')) {
/**
* 时间标准格式化
*
* @param int $timestamp
* @param string $format
* @return array
*/
function timeFormat($timestamp = 0, $format = 'Y-m-d H:i:s')
{
if (!$timestamp || !is_numeric($timestamp)) {
return [
'type' => 'unix_timestamp',
'value' => 0,
'alias' => '-',
'amaze_time' => '',
];
}
return [
'type' => 'unix_timestamp',
'value' => $timestamp,
'alias' => date($format, $timestamp),
'amaze_time' => transformTime($timestamp),
];
}
}
if (!function_exists('pack_input_params')) {
/**
* 过滤字符串单双引号
*
* @param string $str 用逗号分隔的多个参数
* @return mixed
*
*/
function pack_input_params($str)
{
if (empty($str)) {
return $str;
}
return strip_quotes(trim($str));
}
}
if (!function_exists('replace_special_char')) {
/**
* 过滤非法字符
* replace_special_char
*
* @param $strParam
* @return null|string|string[]
*
*/
function replace_special_char($strParam)
{
$regex = "/\/|\~|\!|\@|\#|\\$|\%|\^|\&|\*|\(|\)|\(|\)|\_|\+|\{|\}|\:|\<|\>|\?|\[|\]|\,|\.|\/|\;|\'|\`|\-|\=|\\\|\||\s+/";
return preg_replace($regex, "_", $strParam);
}
}
if (!function_exists('array_to_object')) {
/**
* 数组转为对象
*
* @param array $e
* @return mixed
*
*/
function array_to_object($e)
{
if (gettype($e) != 'array') {
return null;
}
foreach ($e as $k => $v) {
if (gettype($v) == 'array' || getType($v) == 'object') {
$e [$k] = (object)array_to_object($v);
}
}
return (object)$e;
}
}
if (!function_exists('object_to_array')) {
/**
* 对象转为数组
*
* @param $obj
* @return array
*
*/
function object_to_array($obj)
{
$_arr = is_object($obj) ? get_object_vars($obj) : $obj;
foreach ($_arr as $key => $val) {
$val = (is_array($val) || is_object($val)) ? object_to_array($val) : $val;
$arr [$key] = $val;
}
if (!isset($arr)) {
$arr = [];
}
return $arr;
}
}
if (!function_exists('array_filter_null')) {
/**
* 过滤数组null值
*
* @param array $data
* @return array
*
*/
function array_filter_null(array $data)
{
foreach ($data as $k => $v) {
if ($v == null) {
unset($data[$k]);
}
}
return $data;
}
}
if (!function_exists('get_good_str')) {
/**
* 获取字符过滤 用反斜线转义字符串
*
* @param string $ary
* @return string
*
*/
function get_good_str($ary)
{
if (empty($ary)) {
return null;
}
if (is_numeric($ary)) {
$ary = trim($ary);
return $ary;
}
if (is_string($ary)) {
if (!is_null(json_decode($ary))) {
return $ary;
}
return addslashes(strip_tags(trim($ary)));
}
return $ary;
}
}
if (!function_exists('strip_quotes')) {
/**
* 从字符串中移除单引号和双引号
*
* @param string $str
* @return string
*
*/
function strip_quotes($str)
{
return str_replace(['"', "'"], '', $str);
}
}
if (!function_exists('get_ids')) {
/**
* 获取符合mysql IN的 id数组
* get_ids
*
* @param $array
* @param $value
* @param $key
* @return array
*
*/
function get_ids($array, $value, $key = null)
{
return array_values(array_unique(array_filter(array_column($array, $value, $key))));
}
}
if (!function_exists('calculate_summation')) {
/**
* 合计
* calculate_summation
*
* @param array $data //原始数据
* @param $field //需要计算的字段
* @return array
*
*/
function calculate_summation(array $data, $field)
{
$field = explode(',', $field);
$total = [];
//初始值
foreach ($field as $v) {
$total[$v] = 0;
}
foreach ($data as $k => $v) {
foreach ($total as $key => $vv) {
$total[$key] += $v[$key];
}
}
return $total;
}
}
if (!function_exists('array_sort_tag')) {
/***
* 数组排序(两个参数)
*
* @param $arr
* @param $key1
* @param string $type1
* @param $key2
* @param string $type2
* @return array
*/
function array_sort_tag($arr, $key1, $type1, $key2, $type2)
{
$arr = array_sort($arr, $key1, $type1);
$arr = array_values($arr);
$key1name = $arr[0][$key1];
$temp = [];
$i = 0;
$length = count($arr);
foreach ($arr as $k => $v) {
if ($v[$key1] == $key1name) {
$temp[] = $arr[$k];
if ($k == $length - 1) {
$temp = array_sort($temp, $key2, $type2);
$temp = array_values($temp);
foreach ($temp as $key => $val) {
$arr[$i] = $val;
$i++;
}
}
} else {
$temp = array_sort($temp, $key2, $type2);
$temp = array_values($temp);
foreach ($temp as $key => $val) {
$arr[$i] = $val;
$i++;
}
$key1name = $v[$key1];
$temp = [];
$temp[] = $arr[$k];
}
}
return $arr;
}
}
if (!function_exists('array_sort')) {
/***
* 排序
*
* @param $arr
* @param $keys
* @param string $type
* @return array
*/
function array_sort($arr, $keys, $type = 'desc')
{
$keys_value = $new_array = [];
foreach ($arr as $k => $v) {
$keys_value[$k] = $v[$keys];//把所有该键值存到$keys_value
}
if ($type == 'asc') {
asort($keys_value);//对键值排序 $k不动
} else {
arsort($keys_value);
}
reset($keys_value);
foreach ($keys_value as $k => $v) {