Thursday, 12 September 2013

How to convert this array in another array?

How to convert this array in another array?

I have this array:
array(
(int) 1 => 'igor.cesar@soreq.com.br',
(int) 5 => 'igorpol@gmail.com',
(int) 6 => 'kkk@asasa.com'
)
I want to convert to this:
array('igor.cesar@soreq.com.br','igorpol@gmail.com','kkk@asasa.com')
How can I do this?

No comments:

Post a Comment