Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried the array_reduce and array_merge methods but they don't seem to do what I expected. Is there a way of doing this without a foreach?

I need to convert an array such as:

Array
(
    [0] => Array
        (
            [id] => 2
        )

    [1] => Array
        (
            [id] => 3
        )

    [2] => Array
        (
            [id] => 4
        )

)

Into:

Array
(
    [0] => 2
    [1] => 3
    [2] => 4
)
share|improve this question

1 Answer

up vote 1 down vote accepted

You could use array_map

$flat = array_map(function($el) {  return $el['id']; }, $arr);

Not this is for php 5.3. If you are using 5.2 youll have to define a function or use create_function instead of passing in an anonymous like i have here.

share|improve this answer
this works, do you know of a way of doing this without explicitly stating the id as a key name? For example, I'd like to use this function for results that may have something different than id. – Motive Nov 15 '12 at 17:32
If you will only ever have one element in the array you could use array_pop or array_shift to grab that element instead of using the key. Or you could use @rambocoder solution – prodigitalson Nov 15 '12 at 17:56

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.