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

I json decoded API's json data and wanted to convert the object into array . I wrote a class function to do that . And that function is

public function objectToArray($result) {
    if (is_object($result)) {
        $result = get_object_vars($result);
    }
    if (is_array($result)) {
        return array_map( @$this->objectToArray, $result);
    }
    else {
        // Return array
        return $result;    
    }
} 

So the above code didnt work . It only converted 'first layers' objects but not that objects array's object (I am talking about nested arrays and objects) . But when I declared that outside the class like function objectToArray and changed array_map's argument to 'objectToArry' all of a sudden it started to work . How come ? Is there a problem with recurive function inside a class in PHP ?

share|improve this question
4  
Every time you use @ error suppression a kitten feels sad. Please think of the kittens. – Neil Aitken Aug 4 '12 at 11:44
You should not suppress errors (@). If you do, you might miss anything PHP wants to tell you. – knittl Aug 4 '12 at 11:45

closed as too localized by Jared Farrish, vascowhite, GDP, j0k, hakre May 1 at 23:52

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 0 down vote accepted

When you want to use methods of objects as callbacks, you have to pass an array:

array_map(array($this, 'objectToArray'), $result);

PHP would have probably told you that, if you hadn't suppressed errors with the @ operator.

share|improve this answer
This solved my issue . Thank you too @Benjamin – user1485518 Aug 4 '12 at 12:05

What's wrong with:

json_decode($input,true);
share|improve this answer

In PHP, $this->objectToArray is a reference to a property of that name, not to the function as you expected it. You need to pass an array with the object instance and the method name:

return array_map(array($this, 'objectToArray'), $result);
share|improve this answer

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