You are here

public function PHPExcel_Calculation::clearCalculationCache in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php \PHPExcel_Calculation::clearCalculationCache()

* Clear calculation cache

2 calls to PHPExcel_Calculation::clearCalculationCache()
PHPExcel_Calculation::flushInstance in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Flush the calculation cache for any existing instance of this class * but only if a PHPExcel_Calculation instance exists * * @access public *
PHPExcel_Calculation::setCalculationCacheEnabled in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Enable/disable calculation cache * * @access public *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php, line 1917

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

public function clearCalculationCache() {
  $this->_calculationCache = array();
}