Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Lets say I'm having the following php array

Array(
[0]=>a,b,c
)

how can I convert it to get as result another array, what should look like

Array(

[0]=>a

[1]=>b

[2]=>c
)
share|improve this question
(reference) php.net/explode – Gordon Sep 30 '11 at 8:09

3 Answers

up vote 0 down vote accepted

You can simple use php explode() function for that.explode(",", $somearray[0]);.

share|improve this answer
// $a = array('a,b,c');
$b = explode(',', $a[0])
share|improve this answer

This is the way to create index array if you want to give first index of your array whatever you want rather than 0.

Array(
[0]=>'a','b','c'
)

So if you want to start you first index from 10 than.

 Array(
   [10]=>'a','b','c'
 )

will result like this

 Array(
    [10]=>'a',
    [11]=>'b',
    [12]=>'c'
    )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.