Breaking the continuous array
Posted: Sun Mar 16, 2008 8:56 am
I have the following array,
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?
Code: Select all
Array ( [0] => 16+37+24 [2] => 16+37+24 [4] => 16+37+24 )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?