- /*protected function flatten($array, $path, $depth = 10, $sep = '.') {
- //Init res
- $res = array();
-
- //Pass through non hashed or empty array
- if ($depth && is_array($array) && ($array === [] || array_keys($array) === range(0, count($array) - 1))) {
- $res[$path] = $array;
- //Flatten hashed array
- } elseif ($depth && is_array($array)) {
- foreach($array as $k => $v) {
- $sub = $path ? $path.$sep.$k:$k;
- $res += $this->flatten($v, $sub, $depth - 1, $sep);
- }
- //Pass scalar value directly
- } else {
- $res[$path] = $array;
- }
-
- //Return result
- return $res;
- }*/