diff --git a/application/common/library/File.php b/application/common/library/File.php new file mode 100644 index 00000000..8a82aeef --- /dev/null +++ b/application/common/library/File.php @@ -0,0 +1,32 @@ +info[$offset]); + } + + public function offsetGet($offset) + { + return $this->info[$offset]; + } + + public function offsetSet($offset, $value) + { + $this->info[$offset] = $value; + } + + public function offsetUnset($offset) + { + unset($this->info[$offset]); + } +} \ No newline at end of file