public function PHPExcel_CachedObjectStorage_Wincache::deleteCacheData 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::deleteCacheData()
* Delete a cell in cache identified by coordinate address * *
Parameters
string $pCoord Coordinate address of the cell to delete: * @throws PHPExcel_Exception
Overrides PHPExcel_CachedObjectStorage_CacheBase::deleteCacheData
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Wincache.php, line 189
Class
- PHPExcel_CachedObjectStorage_Wincache
- PHPExcel_CachedObjectStorage_Wincache
Code
public function deleteCacheData($pCoord) {
// Delete the entry from Wincache
wincache_ucache_delete($this->_cachePrefix . $pCoord . '.cache');
// Delete the entry from our cell address array
parent::deleteCacheData($pCoord);
}