<?php $aTest = array(4,"f","_","test"); $aReindexed = array(); array_walk($aTest, function(&$v,$k) use (&$aReindexed) { $kNew = $k+100; $aReindexed[$kNew] = $v; } ); print_r($aReindexed); ?>
You have javascript disabled. You will not be able to edit any code.