<?php $arr = [ 'vp 1'=>[5], 'vp 2'=>[10], 'vp 3'=>[15], 'vp 4'=>[20]]; $keys = array_keys($arr); $values = array_merge(array_slice($arr, 1), ["x"]); $new = array_combine($keys, $values); Var_dump($new);
You have javascript disabled. You will not be able to edit any code.