| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- class PHPExcel_Calculation_Token_Stack
- {
- /**
- * The parser stack for formulae
- *
- * @var mixed[]
- */
- private $stack = array();
- /**
- * Count of entries in the parser stack
- *
- * @var integer
- */
- private $count = 0;
- /**
- * Return the number of entries on the stack
- *
- * @return integer
- */
- public function count()
- {
- return $this->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
- */
- public function clear()
- {
- $this->stack = array();
- $this->count = 0;
- }
- }
|