Esempio n. 1
0
 public static function use_apc($apc = true)
 {
     if (!function_exists('apc_add')) {
         if ($apc) {
             self::debug('APC will not be used (function apc_add does not exist)');
         }
         return false;
     }
     self::$apc = $apc;
     return $apc;
 }