代码
interface AccessArray
{
function offsetSet($offset, $value);
function offsetGet($offset);
function offsetUnset($offset);
function offsetExists($offset);
}

interface Iterator
{
function current();
function next();
function key();
function rewind();
function valid();
}

 

 

相关文章: