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.

Just like my previous question, this question is about learning something new in PHP.

Let's assume I have the following multidimensional array (retrieved from MySQL or a service):

array(
    array(
        [id] => xxx,
        [name] => blah
    ),
    array(
        [id] => yyy,
        [name] => blahblah
    ),
    array(
        [id] => zzz,
        [name] => blahblahblah
    ),
)

Can we get an array of ids in one "built-in" php function call? or one line of code?
I am aware of the traditional looping and getting the value but I don't need this:

foreach($users as $user) {
    $ids[] = $user['id'];
}
print_r($ids);

Maybe some array_map() and call_user_func_array() can do the magic.

share|improve this question
"Can we get an array of ids in one function call?" yes, but you'll have to write the function : ) – Boris Guéry Nov 3 '11 at 12:03
@BorisGuéry, I meant built-in functions :-) – ifaour Nov 3 '11 at 12:08
P.S: I'm aware I can write foreach($users as $user) {$ids[] = $user['id'];} in one line! but you know what I mean/need :-) – ifaour Nov 3 '11 at 12:08
@Eugene, I need the array for other things obviously. And again, this is only for fun and learning new shorthands in PHP. – ifaour Nov 3 '11 at 12:12

2 Answers

up vote 4 down vote accepted
$ids = array_map(function ($ar) {return $ar['id'];}, $users);
share|improve this answer
nice, now if there's a native function that is similar to function ($ar) {return $ar['id'];} return value of key that would be awesome! :-) – ifaour Nov 3 '11 at 12:26
well, that's not a "all in one" function, but Closure (Anynonymous functions) are a very powerfull concept that may be used for such processing, you'll rather like to know how to use them. – Boris Guéry Nov 3 '11 at 14:45

If id is the first key in the array, this'll do:

$ids = array_map('current', $users);

You should not necessarily rely on this though. :)

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.