Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Array (
      [0] => stdClass Object
                             (
                               [object_id] => 109957
                              )
      [1] => stdClass Object 
                              (
                                [object_id] => 109834
                               )
      [2] => stdClass Object
                              ( 
                                [object_id] => 109952 
                              )
      [3] => stdClass Object
                            ( 
                              [object_id] => 109964
                                )

 )
share|improve this question

closed as unclear what you're asking by John Kugelman, Denis, AlexP, Glavić, LaurentG Dec 28 '13 at 13:16

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

2  
What is your question? Just an array??? –  Saeed Dec 28 '13 at 12:34
    
neither heading nor question is clear !!! –  Let me see Dec 28 '13 at 12:35

1 Answer 1

up vote 1 down vote accepted
foreach($some_array as $key => $row) {
  $row->object_id; // Get object id
}
share|improve this answer
    
Thanx Hardy Its work for me. –  bhavesh Dec 28 '13 at 12:42

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