ArrayAcess インターフェイス

配列としてオブジェクトにアクセスするための機能のインターフェイスです。
下記のメソッドを有する

ArrayAccess::offsetExists — オフセットが存在するかどうか
ArrayAccess::offsetGet — オフセットを取得する
ArrayAccess::offsetSet — 指定したオフセットに値を設定する
ArrayAccess::offsetUnset — オフセットの設定を解除する

interface ArrayAccess {
	/* メソッド */
	public offsetExists(mixed $offset): bool
	public offsetGet(mixed $offset): mixed
	public offsetSet(mixed $offset, mixed $value): void
	public offsetUnset(mixed $offset): void
}
<?php
//実装例
class Obj implements ArrayAccess {
    private $container = array();

    public function __construct() {
        $this->container = array(
            "one"   => 1,
            "two"   => 2,
            "three" => 3,
        );
    }

    public function offsetSet($offset, $value) {
        if (is_null($offset)) {
            $this->container[] = $value;
        } else {
            $this->container[$offset] = $value;
        }
    }

    public function offsetExists($offset) {
        return isset($this->container[$offset]);
    }

    public function offsetUnset($offset) {
        unset($this->container[$offset]);
    }

    public function offsetGet($offset) {
        return isset($this->container[$offset]) ? $this->container[$offset] : null;
    }
}