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.

I have,

Hypertable_ThriftGen_HqlResult Object
(
  [results] => 
   [cells] => Array
      (
       [0] => Hypertable_ThriftGen_Cell Object
               (
                   [key] => Hypertable_ThriftGen_Key Object
                      (
                       [row] => abc.com
                            [column_family] => domain_name
                           [column_qualifier] => 
                         [timestamp] => 1.30189374164E+18
                         [revision] => 1.30189374164E+18
                           [flag] => 255
                        )
 [value] => www.abc.com
                )
)

How can I retrieve each individual values??

It seems like a json decoded array, not sure though.

share|improve this question
2  
Did you know if someone answers your question, you can (could) accept it? – fabrik Apr 4 '11 at 7:43

1 Answer

You have an object and you can iterate over it like you iterate over array

foreach($yourobject->cells as $rows){
    foreach($rows as $row){
        print_r($row->key);
    }
}
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.