PHP数组式访问接口ArrayAccess用法分析
发布:smiling 来源: PHP粉丝网 添加日期:2018-10-17 09:44:10 浏览: 评论:0
本文实例讲述了PHP数组式访问接口ArrayAccess用法。分享给大家供大家参考,具体如下:
PHP ArrayAccess接口又叫数组式访问接口,该接口的作用是提供像访问数组一样访问对象的能力。
接口摘要如下:
- ArrayAccess {
- // 获取一个偏移位置的值
- abstract public mixed offsetGet ( mixed $offset )
- // 设置一个偏移位置的值
- abstract public void offsetSet ( mixed $offset , mixed $value )
- // 检查一个偏移位置是否存在
- abstract public boolean offsetExists ( mixed $offset )
- // 复位一个偏移位置的值
- abstract public void offsetUnset ( mixed $offset )
- }
例子说明:
- <?php
- /**
- * ArrayAndObjectAccess
- * 该类允许以数组或对象的方式进行访问
- *
- * @author 疯狂老司机
- */
- class ArrayAndObjectAccess implements ArrayAccess {
- /**
- * 定义一个数组用于保存数据
- *
- * @access private
- * @var array
- */
- private $data = [];
- /**
- * 以对象方式访问数组中的数据
- *
- * @access public
- * @param string 数组元素键名
- */
- public function __get($key) {
- return $this->data[$key];
- }
- /**
- * 以对象方式添加一个数组元素
- *
- * @access public
- * @param string 数组元素键名
- * @param mixed 数组元素值
- * @return mixed
- */
- public function __set($key,$value) {
- $this->data[$key] = $value;
- }
- /**
- * 以对象方式判断数组元素是否设置
- *
- * @access public
- * @param 数组元素键名
- * @return boolean
- */
- public function __isset($key) {
- return isset($this->data[$key]);
- }
- /**
- * 以对象方式删除一个数组元素
- *
- * @access public
- * @param 数组元素键名
- */
- public function __unset($key) {
- unset($this->data[$key]);
- }
- /**
- * 以数组方式向data数组添加一个元素
- *
- * @access public
- * @abstracting ArrayAccess
- * @param string 偏移位置
- * @param mixed 元素值
- */
- public function offsetSet($offset,$value) {
- if (is_null($offset)) {
- $this->data[] = $value;
- } else {
- $this->data[$offset] = $value;
- }
- }
- /**
- * 以数组方式获取data数组指定位置元素
- *
- * @access public
- * @abstracting ArrayAccess
- * @param 偏移位置
- * @return mixed
- */
- public function offsetGet($offset) {
- return $this->offsetExists($offset) ? $this->data[$offset] : null;
- }
- /**
- * 以数组方式判断偏移位置元素是否设置
- *
- * @access public
- * @abstracting ArrayAccess
- * @param 偏移位置
- * @return boolean
- */
- public function offsetExists($offset) {
- return isset($this->data[$offset]);
- }
- /**
- * 以数组方式删除data数组指定位置元素
- *
- * @access public
- * @abstracting ArrayAccess
- * @param 偏移位置
- */
- public function offsetUnset($offset) {
- if ($this->offsetExists($offset)) {
- unset($this->data[$offset]);
- }
- }
- } //phpfensi.com
- $animal = new ArrayAndObjectAccess();
- $animal->dog = 'dog'; // 调用ArrayAndObjectAccess::__set
- $animal['pig'] = 'pig'; // 调用ArrayAndObjectAccess::offsetSet
- var_dump(isset($animal->dog)); // 调用ArrayAndObjectAccess::__isset
- var_dump(isset($animal['pig'])); // 调用ArrayAndObjectAccess::offsetExists
- var_dump($animal->pig); // 调用ArrayAndObjectAccess::__get
- var_dump($animal['dog']); // 调用ArrayAndObjectAccess::offsetGet
- unset($animal['dog']); // 调用ArrayAndObjectAccess::offsetUnset
- unset($animal->pig); // 调用ArrayAndObjectAccess::__unset
- var_dump($animal['pig']); // 调用ArrayAndObjectAccess::offsetGet
- var_dump($animal->dog); // 调用ArrayAndObjectAccess::__get
- ?>
以上输出:
- boolean true
- boolean true
- string 'pig' (length=3)
- string 'dog' (length=3)
- null
- null
Tags: 数组 接口
相关文章
- ·PHP中数组定义的几种方法(2013-11-13)
- ·php学习笔记 [预定义数组(超全局数组)](2013-11-13)
- ·php session 预定义数组(2013-11-13)
- ·PHP 数组教程 定义数组(2013-11-13)
- ·我要如何在HTML中建立<form>数组?(2013-11-27)
- ·php 读取多维数组方法(2013-11-28)
- ·删除数组与二维数组值的php代码(2013-11-29)
- ·php 数组之删除空数组程序(2013-11-30)
- ·php删除数组中的空值或指定值操作(2013-11-30)
- ·PHP数组传递给JavaScript以及json_encode的gbk中文乱码(2013-12-02)
- ·php对数组元素去重复值(2013-12-03)
- ·php数组提示Notice: Undefined offset解决办法(2013-12-04)
- ·解决php array数组生成xml文件汉字编码问题(2013-12-07)
- ·php中向数组中插入一元素程序代码(2014-01-03)
- ·php删除数组元素几种方法(2014-01-03)
- ·php中count 多维数组长度统计实现方法(2014-01-03)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)