XRL  latest
Simple XML-RPC Library (both client and server)
ArrayAccess.php
1 <?php
2 
10 interface ArrayAccess {
35  public function offsetExists($offset);
36 
52  public function offsetGet($offset);
53 
66  public function offsetSet($offset, $value);
67 
80  public function offsetUnset($offset);
81 }
Interface to provide accessing objects as arrays.
Definition: ArrayAccess.php:10
offsetSet($offset, $value)
offsetGet($offset)
offsetUnset($offset)
offsetExists($offset)