-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCombine.php
88 lines (74 loc) · 2.06 KB
/
Combine.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
<?php
/**
* @author: stev leibelt <artodeto@bazzline.net>
* @since: 2015-04-26
*/
namespace Net\Bazzline\Component\Toolbox\HashMap;
class Combine
{
public function __invoke(
array $keys,
array $values
): array {
return $this->combine($keys, $values);
}
public function combine(
array $keys,
array $values
): array {
list($areEmpty, $areSameInSize, $areMoreKeys) = $this->createConditions($keys, $values);
if ($areEmpty) {
$combined = [];
} else if ($areSameInSize) {
$combined = array_combine($keys, $values);
} else {
if ($areMoreKeys) {
$combined = $this->combineWithMoreKeys($keys, $values);
} else {
$combined = $this->combineWithMoreValues($keys, $values);
}
}
return $combined;
}
private function createConditions(
array $keys,
array $values
): array {
$sizeOfKeys = count($keys);
$sizeOfValues = count($values);
$areEmpty = (($sizeOfKeys === 0) && ($sizeOfValues === 0));
$areSameInSize = ($sizeOfKeys === $sizeOfValues);
$areMoreKeys = ($sizeOfKeys > $sizeOfValues);
return [
$areEmpty,
$areSameInSize,
$areMoreKeys
];
}
private function combineWithMoreKeys(
array $keys,
array $values
): array {
$combined = [];
foreach (array_values($keys) as $index => $key) {
if (isset($values[$index])) {
$combined[$key] = $values[$index];
}
}
return $combined;
}
private function combineWithMoreValues(
array $keys,
array $values
): array {
$combined = [];
foreach (array_values($values) as $index => $value) {
if (isset($keys[$index])) {
$combined[$keys[$index]] = $value;
} else {
$combined[] = $value;
}
}
return $combined;
}
}