You are here

public static function PHPExcel_CachedObjectStorage_Memcache::cacheMethodIsAvailable in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php \PHPExcel_CachedObjectStorage_Memcache::cacheMethodIsAvailable()

* Identify whether the caching method is currently available * Some methods are dependent on the availability of certain extensions being enabled in the PHP build * *

Return value

boolean

Overrides PHPExcel_CachedObjectStorage_CacheBase::cacheMethodIsAvailable

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php, line 304

Class

PHPExcel_CachedObjectStorage_Memcache
PHPExcel_CachedObjectStorage_Memcache

Code

public static function cacheMethodIsAvailable() {
  if (!function_exists('memcache_add')) {
    return false;
  }
  return true;
}