fork download
  1. <?php
  2.  
  3. $array = [0 => ["number", null, "274", null, null, null, null, null, null, null],
  4. 1 => ["step", null, "4", null, null, null, null, null, null, null],
  5. 19 => ["details", null, null, null, null, null, null, null, null, null]];
  6.  
  7. $new_array = array_combine(array_column($array, 0), array_column($array, 2));
  8. echo json_encode($new_array);
Success #stdin #stdout 0.02s 23260KB
stdin
Standard input is empty
stdout
{"number":"274","step":"4","details":null}