<?php $asd = ['asd' => ['jkf' => ['qwe' => 'wer', 'asd' => '123', 'kjk' => 'sdf', '456' => 'zxc']], 'dfg', 'test' => ['ert' => '234'], 'cvf']; function recurse($array,$key=''){ static $output=[]; foreach($array as $k=>$v){ if(is_array($v)){ recurse($v,$key?$key.'['.$k.']':$k); }else{ $output[$key?$key.'['.$k.']':$k]=$v; } } return $output; } var_export(recurse($asd));
You have javascript disabled. You will not be able to edit any code.