<?php $a = (object) array( "name" => "Brandon", "age" => 29, ); echo $a->name; # ------ Output >> Brandon