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. Link to comment https://forums.phpfreaks.com/topic/78564-solved-array-problem/ 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. Link to comment https://forums.phpfreaks.com/topic/78564-solved-array-problem/#findComment-397539 Share on other sites More sharing options...
Archimedees Posted November 23, 2007 Author Share Posted November 23, 2007 Thanks Orio! Link to comment https://forums.phpfreaks.com/topic/78564-solved-array-problem/#findComment-397545 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.