//數(shù)組形式訪問對對象
/**
* 1.通過繼承PHP內(nèi)置接口ArrayAccess來實現(xiàn)
* 2.必須實現(xiàn)方法:offsetExists,offsetGet,offsetSet,offsetUnset;
*/
classNewObjectimplementsArrayAccess
{
/**
* 檢查一個偏移位置是否存在
*@parammixed $offset
*@returnbool
*/
public functionoffsetExists($offset)
{
//處理邏輯代碼
}
/**
* 獲取一個偏移位置的值
*@parammixed $offset
*@returnnull
*/
public functionoffsetGet($offset)
{
//處理邏輯代碼
}
/**
* 設置一個偏移位置的值
*@parammixed $offset
*@parammixed $value
*/
public functionoffsetSet($offset,$value)
{
//處理邏輯代碼
}
/**
* 復位一個偏移位置的值
*@parammixed $offset
*@returnnull
*/
public functionoffsetUnset($offset)
{
//處理邏輯代碼
}
}
本文題目:數(shù)組形式訪問對象
當前URL:
http://weahome.cn/article/gcsdjh.html