Stooney Posted February 9, 2008 Share Posted February 9, 2008 I'm curious if there's a way to 'reset' the indexes of an array. For example, I started with an array with 100 elements. Some of the values were unset using unset(). So now I'm left with : [30] => value [31] => value [32] => value [33] => value [34] => value [35] => value [36] => value [37] => value [38] => value [39] => value I need to 'redo' the index so that it's 0-9 instead of 30-39. If that makes sense. Haven't been able to find anything on google, might be using the wrong keywords. If there's no pre-made functions, I can write a quick little function. Just making sure I'm not reinventing the wheel for no reason. Link to comment https://forums.phpfreaks.com/topic/90182-solved-redo-array-index/ Share on other sites More sharing options...
Stooney Posted February 9, 2008 Author Share Posted February 9, 2008 Never mind the next google page helped me. For those curious $new_array=array_values($old_array); Link to comment https://forums.phpfreaks.com/topic/90182-solved-redo-array-index/#findComment-462448 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.