Example #1
0
 public function Clean($uniq_str, $initdir = false, $basedir = "cache")
 {
     if (is_object($this) && $this instanceof CPHPCache) {
         return $this->cache->clean($uniq_str, $initdir, $basedir);
     } else {
         $obCache = new CPHPCache();
         return $obCache->Clean($uniq_str, $initdir, $basedir);
     }
 }