[ "value" => "city" ], ]); foreach ($r as $v){ $d = $v['data']; $val = []; //if($c = $d['country']) $val[] = $c; //if($c = $d['region']) $val[] = $c; if($c = $d['city_type']) $val[] = $c; if($c = $d['city']) $val[] = $c; if($c = $d['street_type']) $val[] = $c; if($c = $d['street']) $val[] = $c; if($c = $d['house_type']) $val[] = $c; if($c = $d['house']) $val[] = $c; if($c = $d['block_type']) $val[] = $c; if($c = $d['block']) $val[] = $c; $title = implode(" ",$val); $res[] = [ 'title'=>$title, //'value'=>$val, ]; } } echo je( $res ); } }