Etienne Kneuss

home » repository » php » ircbot » libraries » class.BaseArray.php
Tree:
school
mp3
php
sample
publications
Math_Derivative
Math_Expression
ircbot
libraries
class.Link_IRC.php
class.DB_mySQL.php
class.Link.php
expt.DB_Exception.php
class.DB_mySQL_Results.php
class.DB_Common_Results.php
class.DB.php
class.DB_Common.php
iface.Observed.php
iface.Observer.php
class.BaseArray.php
class.Bot.php
modules
exceptions
bot.php
plopbot.sql
php.net
images
dump

Source code raw phps

    <?php class baseArray implements ArrayAccess {     public function offsetSet($key, $value)      {         if (array_key_exists($key,get_object_vars($this)) ) {             $this->{$key} = $value;         }     }          public function offsetGet($key)      {         if (array_key_exists($key,get_object_vars($this)) ) {             return $this->{$key};         }     }     public function offsetUnset($key)      {         if (array_key_exists($key,get_object_vars($this)) ) {             unset($this->{$key});         }     }     public function offsetExists($offset)      {         return array_key_exists($offset,get_object_vars($this));     }  } ?>

Comments

There is currently no comment here.

Add a comment

Username:

Spam Challenge: 4+14=?

Comment: