Using Array as Object in PHP
I find the way of retrieving object properties more clean than getting array indices.
To work with arrays as object notation, use this :
$array = array('language'=>'php', 'framework'=>'laravel', 'ide'=>'Sublime Text');
$object = new ArrayObject($array, ArrayObject::ARRAY_AS_PROPS);
echo $object->language; // php
The code now looks cleaner.
Written by Kuldeep
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#