Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 064710324e | |||
| e0356dcadf |
@@ -1 +1 @@
|
|||||||
8.2.2
|
8.3.0
|
||||||
|
|||||||
@@ -208,7 +208,9 @@ class ArrayHandler
|
|||||||
$prev_depth = 0;
|
$prev_depth = 0;
|
||||||
foreach ($recursive as $key => $value) {
|
foreach ($recursive as $key => $value) {
|
||||||
if ($prev_depth > $recursive->getDepth()) {
|
if ($prev_depth > $recursive->getDepth()) {
|
||||||
$key_path = [];
|
// remove all trailing to ne depth
|
||||||
|
$diff = $prev_depth - $recursive->getDepth();
|
||||||
|
array_splice($key_path, -$diff, $diff);
|
||||||
}
|
}
|
||||||
$prev_depth = $recursive->getDepth();
|
$prev_depth = $recursive->getDepth();
|
||||||
if ($flat === false) {
|
if ($flat === false) {
|
||||||
|
|||||||
Reference in New Issue
Block a user