草庐IT

phpraise

全部标签

php - 是否可以在 PHP 中实现类似数组的对象?

我想实现一个行为类似于数组的对象。应该这样使用:$var=newCustomCollection(retrieveFromWebService());echo$var[0];//legal$var[0]='a';//illegal可以使用魔术方法或其他机制在PHP中完成吗? 最佳答案 您的CustomCollection类需要实现内置的ArrayAccessinterface.另请参阅:http://code.google.com/p/phpraise/source/browse/trunk/phpraise/core/collec