fork download
  1. <?php
  2.  
  3. $arr = array("te", "sx", "ds");
  4.  
  5. $n = 6;
  6. array_walk($arr, function($value) use (&$x, &$n) {$x[$n] = $value; $n++;});
  7. print_r($x);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Array
(
    [6] => te
    [7] => sx
    [8] => ds
)