Is there a way to convert a multidimensional array to a stdClass object in PHP?
Casting as (object) doesn't seem to work recursively. json_decode(json_encode($array)) produces the result I'm looking for, but there has to be a better way...
|
Is there a way to convert a multidimensional Casting as |
||||
|
|
|
As far as I can tell, there is no prebuilt solution for this, so you can just roll your own:
|
|||||||||
|
|
||||
|
|
|
I know this answer is coming late but I'll post it for anyone who's looking for a solution. Instead of all this looping etc, you can use PHP's native json_* function. I've got a couple of handy functions that I use a lot
Hope this can be helpful |
|||||||||
|
|
Here's a function to do an in-place deep array-to-object conversion that uses PHP internal (shallow) array-to-object type casting mechanism. It creates new objects only when necessary, minimizing data duplication.
Warning - do not use this code if there is a risk of having circular references. |
|||
|
|