Exemplo n.º 1
0
 /**
  * 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;
         }
     }
 }