Example #1
0
 static function ExternalToStorage($url, $ttl, $storage = null, $ext = null)
 {
     $cache = new self('loadUrl' . $url, $ttl, $storage, $ext);
     if (!empty($url) && !$cache->isUpToDate()) {
         $cache->captureUrl($url);
     }
     return $cache;
 }