PHP Array to Object
This came up, thought I'd share
private function array_to_obj( $arr ) {
$o = new stdClass();
foreach ($arr as $k => $v) {
if ( is_array($v) ) {
$v = $this->array_to_obj( $v );
}
$o->$k = $v;
}
return $o;
}
Written by buck heroux
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Related Tags
#php
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#