Forum Moderators: coopster
[php]Array ( [0] => 16+37+24 [2] => 16+37+24 [4] => 16+37+24 )[/php]
Where '+' is the delimiter and Section+Category+Page format.
Now i want to separate each value in the array... for example 16+37+24 to get the output
Section value as 16 , Category value as 37 and Page value as 24.
For removing the delimiter and processing to get the desired result what can I do?
Something like -
$new_array = array();
foreach($array as $k => $v) {
$new_array[$k].= explode('+', $v);
}