public function PHPExcel_CachedObjectStorage_APC::deleteCacheData in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php \PHPExcel_CachedObjectStorage_APC::deleteCacheData()
Delete a cell in cache identified by coordinate address
@access public
Parameters
string $pCoord Coordinate address of the cell to delete:
Throws
Overrides PHPExcel_CachedObjectStorage_CacheBase::deleteCacheData
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ APC.php, line 186
Class
- PHPExcel_CachedObjectStorage_APC
- PHPExcel_CachedObjectStorage_APC
Code
public function deleteCacheData($pCoord) {
// Delete the entry from APC
apc_delete($this->_cachePrefix . $pCoord . '.cache');
// Delete the entry from our cell address array
parent::deleteCacheData($pCoord);
}