Example #1
0
File: HTTP.php Project: techart/tao
 public function __construct($file, $cache = false, $cache_lifetime = Net_HTTP::DEFAULT_CACHE_LIFETIME)
 {
     parent::__construct();
     $this->file = IO_FS::File($file);
     $this->cache = $cache;
     $this->cache_lifetime = $cache_lifetime;
     $this->setup();
 }