forked from maciejczyzewski/bottomline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroupBy.php
149 lines (140 loc) · 3.81 KB
/
groupBy.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
<?php
namespace collections;
/**
* Returns an associative array where the keys are values of $key.
*
* Based on Chauncey McAskill's [array_group_by()](https://gist.github.com/mcaskill/baaee44487653e1afc0d)
* function.
*
* ## Group by Key
*
* **Usage**
*
* ```php
* __::groupBy([
* ['state' => 'IN', 'city' => 'Indianapolis', 'object' => 'School bus'],
* ['state' => 'CA', 'city' => 'San Diego', 'object' => 'Light bulb'],
* ['state' => 'CA', 'city' => 'Mountain View', 'object' => 'Space pen'],
* ],
* 'state'
* );
* ```
*
* **Result**
*
* ```
* [
* 'IN' => [
* ['state' => 'IN', 'city' => 'Indianapolis', 'object' => 'School bus'],
* ['state' => 'CA', 'city' => 'San Diego', 'object' => 'Light bulb'],
* ],
* 'CA' => [
* ['state' => 'CA', 'city' => 'Mountain View', 'object' => 'Space pen']
* ]
* ]
* ```
*
* ## Group by nested key (dot notation)
*
* **Usage**
*
* ```php
* __::groupBy([
* ['object' => 'School bus', 'metadata' => ['state' => 'IN', 'city' => 'Indianapolis']],
* ['object' => 'Manhole', 'metadata' => ['state' => 'IN', 'city' => 'Indianapolis']],
* ['object' => 'Basketball', 'metadata' => ['state' => 'IN', 'city' => 'Plainfield']],
* ['object' => 'Light bulb', 'metadata' => ['state' => 'CA', 'city' => 'San Diego']],
* ['object' => 'Space pen', 'metadata' => ['state' => 'CA', 'city' => 'Mountain View']],
* ],
* 'metadata.state'
* );
* ```
*
* **Result**
*
* ```
* [
* 'IN' => [
* 'Indianapolis' => [
* ['object' => 'School bus', 'metadata' => ['state' => 'IN', 'city' => 'Indianapolis']],
* ['object' => 'Manhole', 'metadata' => ['state' => 'IN', 'city' => 'Indianapolis']],
* ],
* 'Plainfield' => [
* ['object' => 'Basketball', 'metadata' => ['state' => 'IN', 'city' => 'Plainfield']],
* ],
* ],
* 'CA' => [
* 'San Diego' => [
* ['object' => 'Light bulb', 'metadata' => ['state' => 'CA', 'city' => 'San Diego']],
* ],
* 'Mountain View' => [
* ['object' => 'Space pen', 'metadata' => ['state' => 'CA', 'city' => 'Mountain View']],
* ],
* ],
* ]
* ```
*
* ## Group by Closure
*
* **Usage**
*
* ```php
* __::groupBy([
* ['state' => 'IN', 'city' => 'Indianapolis', 'object' => 'School bus'],
* ['state' => 'IN', 'city' => 'Indianapolis', 'object' => 'Manhole'],
* ['state' => 'CA', 'city' => 'San Diego', 'object' => 'Light bulb'],
* ],
* function ($value) {
* return $value->city;
* }
* );
* ```
*
* **Result**
*
* ```
* [
* 'Indianapolis' => [
* ['state' => 'IN', 'city' => 'Indianapolis', 'object' => 'School bus'],
* ['state' => 'IN', 'city' => 'Indianapolis', 'object' => 'Manhole'],
* ],
* 'San Diego' => [
* ['state' => 'CA', 'city' => 'San Diego', 'object' => 'Light bulb'],
* ]
* ]
* ```
*
* @author Chauncey McAskill
*
* @param array $array
* @param int|float|string|\Closure $key
*
* @return array
*/
function groupBy(array $array, $key)
{
if (!\is_bool($key) && !\is_scalar($key) && !\is_callable($key)) {
return $array;
}
$grouped = [];
foreach ($array as $value) {
$groupKey = null;
if (\is_callable($key)) {
$groupKey = call_user_func($key, $value);
} else {
$groupKey = \__::get($value, $key);
}
if ($groupKey === null) {
continue;
}
$grouped[$groupKey][] = $value;
}
if (($argCnt = func_num_args()) > 2) {
$args = func_get_args();
foreach ($grouped as $_key => $value) {
$params = array_merge([$value], array_slice($args, 2, $argCnt));
$grouped[$_key] = call_user_func_array('__::groupBy', $params);
}
}
return $grouped;
}