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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.