我们专注攀枝花网站设计 攀枝花网站制作 攀枝花网站建设
成都网站建设公司服务热线:400-028-6601

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

数组形式访问对象

//数组形式访问对对象
/**
* 1.通过继承PHP内置接口ArrayAccess来实现
* 2.必须实现方法: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)
   {
       //处理逻辑代码
   }
}

分享文章:数组形式访问对象
转载来于:http://mswzjz.cn/article/gcsdjh.html

其他资讯