00001 <?php
00002
00003
00004
00005
00006
00007
00008 class RuntimeCache {
00009 private static $cache = array();
00010
00011
00012
00013
00014
00015
00016
00017 public static function set($keys, $value) {
00018 Arr::set_item_recursive(self::$cache, $keys, $value);
00019 }
00020
00021
00022
00023
00024
00025
00026
00027
00028 public static function get($keys, $default = false) {
00029 return Arr::get_item_recursive(self::$cache, $keys, $default);
00030 }
00031
00032
00033
00034
00035
00036
00037 public static function remove($keys) {
00038 Arr::unset_item_recursive(self::$cache, $keys);
00039 }
00040
00041
00042
00043
00044
00045
00046 public static function clear_all() {
00047 self::$cache = array();
00048 }
00049 }