《PHP5 Power Programming》学习笔记2
2011-10-17 09:07 Virus-BeautyCode 阅读(406) 评论(0) 编辑 收藏 举报PHP5的高级面向对象编程
1、属性和方法的重载
function __get($property)
function __set($property,$value)
function __call($method,$args)
2、数组重载
有点像c#的索引器,使得访问对象可以像访问数组一样,使用下标来访问。
需要实现接口
interface ArrayAccess{
bool offsetExists($index);
mixed offsetGet($index);
void offsetSet($index,$new_value);
void offsetUnset($index);
}
3、迭代器
4、反射