Last Updated: February 25, 2016
·
572
· buckheroux

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;
}