Lines Matching defs:ext
16 public $ext = ''; // file ext for cache data, secondary identifier for this item
32 * @param string $ext file extension
34 public function __construct($key, $ext)
37 $this->ext = $ext;
38 $this->cache = getCacheName($key, $ext);
214 if (isset($stats[$this->ext])) {
215 [$ext, $count, $hits] = explode(',', $stats[$this->ext]);
217 $ext = $this->ext;
226 $stats[$this->ext] = "$ext,$count,$hits";