You are here

function xautoload_ApcKeyManager_Enabled::__construct in X Autoload 7.3

Parameters

string $apc_key:

File

lib/ApcKeyManager/Enabled.php, line 23

Class

xautoload_ApcKeyManager_Enabled

Code

function __construct($apc_key) {
  $this->apcKey = $apc_key;
  $this->apcPrefix = apc_fetch($this->apcKey);
  if (empty($this->apcPrefix)) {
    $this
      ->renewApcPrefix();
  }
}