Plop
A simple logging library for PHP
iface_ArrayAccess.php
1 <?php
2 
10 interface ArrayAccess
11 {
36  public function offsetExists($offset);
37 
53  public function offsetGet($offset);
54 
67  public function offsetSet($offset, $value);
68 
81  public function offsetUnset($offset);
82 }
Interface to provide accessing objects as arrays.
offsetSet($offset, $value)
offsetGet($offset)
offsetUnset($offset)
offsetExists($offset)