This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlat.php
170 lines (155 loc) · 4.63 KB
/
Flat.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
<?php
/**
* Flat.php
* https://github.com/TheNocoder/FlatPHP
* Copyright (c) 2023
* https://github.com/TheNocoder/FlatPHP/LICENSE
*/
/**
* array_is_list only in PHP >= 8.1
*/
if (!function_exists('array_is_list')) {
function array_is_list(array $array)
{
return $array === [] || (array_keys($array) === range(0, count($array) - 1));
}
}
/**
* Flattens an array.
*
* Example:
*
* $flatt = [];
* $start = '$';
* $array = [
* 'assokey' => ['Foo'],
* ];
* $options = [
* 'prefix' => '{',
* 'suffix' => '}',
* 'suffix-end' => true,
* 'prefix-list' => '[',
* 'suffix-list' => ']',
* 'suffix-list-end' => true,
* ];
*
* Result of
* flatten_array($array, $flatt, $options, $start)
*
* $flatt = [
* '${assokey}[0]' => 'Foo',
* ];
*
* .-------------> $start param
* |.------------> 'prefix'
* || .----> 'suffix'
* || |.---> 'prefix-list'
* || || .-> only if 'suffix-list-end'/'suffix-end' is true
* || || |
* ${assokey}[0] => 'Foo'
*
* @param array $source Array to flatten
* @param array &$destination Array to fill with flattened
* @param array $options
* @param string $start
* @return void
*/
function flatten_array($source, &$destination, $opt = [], $start = '')
{
$opt['prefix'] ??= ''; // prefix
$opt['suffix'] ??= '.'; // suffix
$opt['suffix-end'] ??= false; // ends with $suffix
$opt['prefix-list'] ??= '['; // prefix if array list
$opt['suffix-list'] ??= ']'; // suffix if array list
$opt['suffix-list-end'] ??= true; // ends with $sufixList if array list
if (($opt['prefix-list'] || $opt['suffix-list']) && array_is_list($source)) {
if (!$opt['suffix-end']) {
// deduplicate suffix
$start = rtrim($start, $opt['suffix']);
}
$currentPrefix = $opt['prefix-list'];
$currentSuffix = $opt['suffix-list'];
$currentSuffixEnd = $opt['suffix-list-end'];
} else {
$currentPrefix = $opt['prefix'];
$currentSuffix = $opt['suffix'];
$currentSuffixEnd = $opt['suffix-end'];
}
$currentName = $start;
foreach ($source as $key => $val) {
$currentName .= $currentPrefix.$key;
if (is_array($val) && !empty($val)) {
$currentName .= "$currentSuffix";
flatten_array($val, $destination, $opt, $currentName);
} else {
if ($currentSuffixEnd) {
$currentName .= $currentSuffix;
}
$destination[$currentName] = $val;
}
$currentName = $start;
}
}
/**
* Unflatten an flattened array.
*
* (!) Same options used for flattening are necessary.
*
* @param array $source Flattened array to unflatten
* @param array &$destination Array to fill with unflatten
* @param array $options
* @param string $start
* @return void
*/
function unflatten_array($source, &$destination, $opt = [], $start = '')
{
$opt['prefix'] ??= '';
$opt['suffix'] ??= '.';
$opt['suffix-end'] ??= false; // This option is IGNORED for unflatten.
$opt['prefix-list'] ??= '[';
$opt['suffix-list'] ??= ']';
$opt['suffix-list-end'] ??= true; // This option is IGNORED for unflatten.
/*
* Determine a single separator
*/
$splitter = $opt['suffix'] ?: $opt['prefix'] ?: $opt['prefix-list'] ?: $opt['suffix-list'];
/*
* Used suffixes and prefixes will be replaced by single $splitter
*
* Simplify a complex string like:
*
* {properties}{collections}[0][0]
*
* To a simpler one than it is possible to do a simple split:
*
* properties}collections}0}0
*
* Later: str_replace($search, $splitter, $key) and explode($splitter, $key)
*/
$tokens = [
'' => 1, // force it to exist
$opt['prefix'] => 1,
$opt['suffix'] => 1,
$opt['suffix'].$opt['prefix'] => 1,
$opt['prefix-list'] => 1,
$opt['suffix-list'] => 1,
$opt['suffix-list'].$opt['prefix-list'] => 1,
$splitter.$splitter => 1,
];
unset($tokens['']);
$search = array_keys($tokens);
foreach ($source as $key => $val) {
$key = ltrim($key, $start);
$key = str_replace($search, $splitter, $key);
$key = trim($key, $splitter);
$sub = explode($splitter, $key);
$ref = &$destination;
foreach ($sub as $subkey) {
if (!isset($ref[$subkey])) {
$ref[$subkey] = [];
}
$ref = &$ref[$subkey];
}
$ref = $val;
}
}