Jump to content

[SOLVED] Array problem


Archimedees

Recommended Posts

 

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.