Showing posts with label array to object. Show all posts
Showing posts with label array to object. Show all posts

Wednesday, 13 July 2016

PHP Function to Convert Array to Object

Easy php function to convert php array to php object. Php objects are easy to access and get data than array.
function convertToObject(array $array) {
    foreach($array as $key => $value) {
            if (is_array($value)) {
                $array[$key] = convertToObject($value);
            }
     }    
     return (object) $array; 

}