DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Re-create Array Index
$new_array = explode('.sep.', implode('.sep', $old_array));





Comments
Snippets Manager replied on Mon, 2012/05/07 - 2:11pm
Snippets Manager replied on Mon, 2012/05/07 - 2:11pm
$new_array = array_values($old_array);?