public static function PHPExcel_CachedObjectStorage_Wincache::cacheMethodIsAvailable in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php \PHPExcel_CachedObjectStorage_Wincache::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/ Wincache.php, line 286
Class
- PHPExcel_CachedObjectStorage_Wincache
- PHPExcel_CachedObjectStorage_Wincache
Code
public static function cacheMethodIsAvailable() {
if (!function_exists('wincache_ucache_add')) {
return false;
}
return true;
}