Array operator overloading
ArrayAccess interface is an excellent offer from PHP. Though I do not personally like the idea of operator overloading, this interface can be a great tool for developing application faster and neatly by overloading the array access.
The interface is to be implemented by a class and override the accessors methods.
I am giving a simple code [...]