Example #1
0
 function IsCacheExpired($path)
 {
     if (is_object($this) && $this instanceof CPHPCache) {
         return $this->cache->isCacheExpired($path);
     } else {
         $obCache = new CPHPCache();
         return $obCache->IsCacheExpired($path);
     }
 }