[PHP] Convert Array to Object
<?php
$array = array(
'user' => array(
'name' => 'Abimael',
'lastname' => 'Martell',
'phones' => array(
'home' => '123456',
'work' => '3213215',
),
)
);
$object = json_decode(json_encode($array));
echo $object->user->phones->work; // 3213215
Written by Abimael Martell
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#