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 a array of objects like this one:

Array
(
    [0] => stdClass Object
        (
            [art_id] => 76
            [title] => whatever
        )

    [1] => stdClass Object
        (
            [art_id] => 216
            [title] => blabla
        )

)

Can I somehow get a array with all art_id's from it, without having to iterate it?

(like array(76, 216))

share|improve this question
csn you please clarify why you dont want to iterate it or at least explain what iterating means to you in the context of your question? – Gordon Jun 8 '11 at 12:48

1 Answer

up vote 6 down vote accepted
function getArtId($obj)
{
    return $obj->art_id;
}

$b = array_map("getArtId", $a);
print_r($b);

This is indirectly an iteration, but you do not need to write code for the loop yourself.

share|improve this answer
its indirectly a iterate. – Gaurav Jun 8 '11 at 12:35
I hate down-vote without comments. – Gaurav Jun 8 '11 at 12:39
@Tomalak Geret'kal : thanks – Gaurav Jun 8 '11 at 12:50

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.