_count; } /** * Push a new entry onto the stack * * @param mixed $type * @param mixed $value * @param mixed $reference */ public function push($type, $value, $reference = null) { $this->_stack[$this->_count++] = array( 'type' => $type, 'value' => $value, 'reference' => $reference ); if ($type == 'Function') { $localeFunction = PHPExcel_Calculation::_localeFunc($value); if ($localeFunction != $value) { $this->_stack[($this->_count - 1)]['localeValue'] = $localeFunction; } } } /** * Pop the last entry from the stack * * @return mixed */ public function pop() { if ($this->_count > 0) { return $this->_stack[--$this->_count]; } return null; } /** * Return an entry from the stack without removing it * * @param integer $n number indicating how far back in the stack we want to look * @return mixed */ public function last($n = 1) { if ($this->_count - $n < 0) { return null; } return $this->_stack[$this->_count - $n]; } /** * Clear the stack */ function clear() { $this->_stack = array(); $this->_count = 0; } }