Searched refs:cache_type (Results 1 – 1 of 1) sorted by relevance
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | extension.cache.dbm.php | 88 private $cache_type; variable in getID3_cached_dbm 98 * @param string $cache_type 105 public function __construct($cache_type, $dbm_filename, $lock_filename) { argument 113 if (!function_exists('dba_handlers') || !in_array($cache_type, dba_handlers())) { 114 …throw new Exception('PHP is not compiled --with '.$cache_type.' support, required to use DBM style… 141 $this->dba = dba_open($dbm_filename, 'w', $cache_type); 145 $this->dba = dba_open($dbm_filename, 'n', $cache_type); 156 $this->cache_type = $cache_type; 200 $this->dba = dba_open($this->dbm_filename, 'n', $this->cache_type);
|