<?php $obj = (object) array('web' => 'wdwd', 'game' => 'HOAB HTML5'); echo $obj->web; // prints 'wdwd' echo $obj->game; // prints 'HOAB HTML5' ?>