Archimedees Posted November 23, 2007 Share Posted November 23, 2007 I want to change this array Array ( [0] => active_trouba [1] => active_ide [2] => active_progno.mindlab-dmz.ze [3] => active_berlixe.mindgate.ze [4] => active_majestic.mindgate.de) into Array ( [0] => trouba [1] => ide [2] => progno.mindlab-dmz.ze [3] => berlixe.mindgate.ze [4] => majestic.mindgate.ze) Does any kind person here know how I should go about that? Thanks. Quote Link to comment Share on other sites More sharing options...
Orio Posted November 23, 2007 Share Posted November 23, 2007 Depends on how specific you want to be.. <?php //effiecient and simple (may lead to unexpected results) foreach($array as $k => $val) $array[$k] = substr($val, strlen("active_")); //less effiecient, more specific (will lead to the wanted results 100%) foreach($array as $k => $val) $array[$k] = preg_replace("/^active_/", "", $val); ?> Orio. Quote Link to comment Share on other sites More sharing options...
Archimedees Posted November 23, 2007 Author Share Posted November 23, 2007 Thanks Orio! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.