[フレーム]
Last Updated: May 31, 2021
·
1.01K
· abimaelmartell

[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

AltStyle によって変換されたページ (->オリジナル) /